mirror of https://github.com/bjdgyc/anylink.git
简化sniNewParser代码
This commit is contained in:
parent
a168c96a93
commit
2af2d273e4
|
@ -29,10 +29,7 @@ func onTCP(payload []byte) (uint8, string) {
|
|||
}
|
||||
|
||||
func sniNewParser(b []byte) (uint8, string) {
|
||||
if len(b) < 2 || b[0] != 0x16 || b[1] != 0x03 {
|
||||
return acc_proto_tcp, ""
|
||||
}
|
||||
if len(b) < 6 {
|
||||
if len(b) < 6 || b[0] != 0x16 || b[1] != 0x03 {
|
||||
return acc_proto_tcp, ""
|
||||
}
|
||||
rest := b[5:]
|
||||
|
|
Loading…
Reference in New Issue