Skip to content

Commit 08951db

Browse files
committed
WIP: sqlite3: Add decoder
See sqlite3.{go,jq} for TODO Related to #27
1 parent 496849d commit 08951db

21 files changed

+1151
-0
lines changed

format/all/all.fqtest

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ $ fq -n _registry.groups.probe
2929
"pcap",
3030
"pcapng",
3131
"png",
32+
"sqlite3",
3233
"tar",
3334
"tiff",
3435
"tzif",

format/all/all.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ import (
5252
_ "github.com/wader/fq/format/protobuf"
5353
_ "github.com/wader/fq/format/riff"
5454
_ "github.com/wader/fq/format/rtmp"
55+
_ "github.com/wader/fq/format/sqlite3"
5556
_ "github.com/wader/fq/format/tar"
5657
_ "github.com/wader/fq/format/text"
5758
_ "github.com/wader/fq/format/tiff"

format/format.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ var (
165165
RTMP = &decode.Group{Name: "rtmp"}
166166
SLL_Packet = &decode.Group{Name: "sll_packet"}
167167
SLL2_Packet = &decode.Group{Name: "sll2_packet"}
168+
SQLite3 = &decode.Group{Name: "sqlite3"}
168169
TAR = &decode.Group{Name: "tar"}
169170
TCP_Segment = &decode.Group{Name: "tcp_segment"}
170171
TIFF = &decode.Group{Name: "tiff"}

0 commit comments

Comments
 (0)