1
0
mirror of https://github.com/netsampler/goflow2.git synced 2024-05-06 15:54:52 +00:00

Merge pull request #60 from netsampler/feature/add-sctp

Map ProtoName for SCTP
This commit is contained in:
Louis
2021-12-20 17:06:40 +01:00
committed by GitHub

View File

@ -26,10 +26,11 @@ var (
0x86dd: "IPv6",
}
ProtoName = map[uint32]string{
1: "ICMP",
6: "TCP",
17: "UDP",
58: "ICMPv6",
1: "ICMP",
6: "TCP",
17: "UDP",
58: "ICMPv6",
132: "SCTP",
}
IcmpTypeName = map[uint32]string{
0: "EchoReply",