Skip to content

Commit e956acb

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

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
@@ -21,6 +21,7 @@ $ fq -n _registry.groups.probe
2121
"pcap",
2222
"pcapng",
2323
"png",
24+
"sqlite3",
2425
"tar",
2526
"tiff",
2627
"tzif",

format/all/all.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ import (
4545
_ "github.com/wader/fq/format/protobuf"
4646
_ "github.com/wader/fq/format/riff"
4747
_ "github.com/wader/fq/format/rtmp"
48+
_ "github.com/wader/fq/format/sqlite3"
4849
_ "github.com/wader/fq/format/tar"
4950
_ "github.com/wader/fq/format/text"
5051
_ "github.com/wader/fq/format/tiff"

format/format.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ var (
155155
RTMP = &decode.Group{Name: "rtmp"}
156156
SLL_Packet = &decode.Group{Name: "sll_packet"}
157157
SLL2_Packet = &decode.Group{Name: "sll2_packet"}
158+
SQLite3 = &decode.Group{Name: "sqlite3"}
158159
TAR = &decode.Group{Name: "tar"}
159160
TCP_Segment = &decode.Group{Name: "tcp_segment"}
160161
TIFF = &decode.Group{Name: "tiff"}

0 commit comments

Comments
 (0)