Skip to content

Commit 7500a8b

Browse files
committed
fq: Sort formats
1 parent ae29621 commit 7500a8b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

format/format.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ type Probe_Args_In struct {
4545

4646
var (
4747
Image = &decode.Group{Name: "image"}
48-
Probe = &decode.Group{Name: "probe", DefaultInArg: Probe_In{}}
49-
Probe_Args = &decode.Group{Name: "probe_args", DefaultInArg: Probe_Args_In{}}
50-
Link_Frame = &decode.Group{Name: "link_frame", DefaultInArg: Link_Frame_In{}} // ex: ethernet
5148
INET_Packet = &decode.Group{Name: "inet_packet", DefaultInArg: INET_Packet_In{}} // ex: ipv4
5249
IP_Packet = &decode.Group{Name: "ip_packet", DefaultInArg: INET_Packet_In{}} // ex: tcp
50+
Link_Frame = &decode.Group{Name: "link_frame", DefaultInArg: Link_Frame_In{}} // ex: ethernet
51+
MP3_Frame_Tags = &decode.Group{Name: "mp3_frame_tags"}
52+
Probe = &decode.Group{Name: "probe", DefaultInArg: Probe_In{}}
53+
Probe_Args = &decode.Group{Name: "probe_args", DefaultInArg: Probe_Args_In{}}
5354
TCP_Stream = &decode.Group{Name: "tcp_stream", DefaultInArg: TCP_Stream_In{}} // ex: http
5455
UDP_Payload = &decode.Group{Name: "udp_payload", DefaultInArg: UDP_Payload_In{}} // ex: dns
55-
MP3_Frame_Tags = &decode.Group{Name: "mp3_frame_tags"}
5656

57-
Bytes = &decode.Group{Name: "bytes"}
5857
Bits = &decode.Group{Name: "bits"}
58+
Bytes = &decode.Group{Name: "bytes"}
5959

6060
AAC_Frame = &decode.Group{Name: "aac_frame"}
6161
ADTS = &decode.Group{Name: "adts"}
@@ -83,7 +83,6 @@ var (
8383
Bitcoin_Block = &decode.Group{Name: "bitcoin_block"}
8484
Bitcoin_Script = &decode.Group{Name: "bitcoin_script"}
8585
Bitcoin_Transaction = &decode.Group{Name: "bitcoin_transaction"}
86-
Opentimestamps = &decode.Group{Name: "opentimestamps"}
8786
Bplist = &decode.Group{Name: "bplist"}
8887
BSD_Loopback_Frame = &decode.Group{Name: "bsd_loopback_frame"}
8988
BSON = &decode.Group{Name: "bson"}
@@ -142,13 +141,14 @@ var (
142141
MP4 = &decode.Group{Name: "mp4"}
143142
MPEG_ASC = &decode.Group{Name: "mpeg_asc"}
144143
MPEG_ES = &decode.Group{Name: "mpeg_es"}
145-
MPES_PES = &decode.Group{Name: "mpeg_pes"}
146144
MPEG_PES_Packet = &decode.Group{Name: "mpeg_pes_packet"}
147145
MPEG_SPU = &decode.Group{Name: "mpeg_spu"}
148146
MPEG_TS = &decode.Group{Name: "mpeg_ts"}
147+
MPES_PES = &decode.Group{Name: "mpeg_pes"}
149148
MsgPack = &decode.Group{Name: "msgpack"}
150149
Ogg = &decode.Group{Name: "ogg"}
151150
Ogg_Page = &decode.Group{Name: "ogg_page"}
151+
Opentimestamps = &decode.Group{Name: "opentimestamps"}
152152
Opus_Packet = &decode.Group{Name: "opus_packet"}
153153
PCAP = &decode.Group{Name: "pcap"}
154154
PCAPNG = &decode.Group{Name: "pcapng"}

0 commit comments

Comments
 (0)