Skip to content

Commit 9565a8f

Browse files
authored
Merge pull request #156 from negbie/master
Add version flag, don't send unkown hep
2 parents 0e56af0 + be73e65 commit 9565a8f

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

config/config.go

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ type Config struct {
2222
Network string
2323
Protobuf bool
2424
Reassembly bool
25+
Version bool
2526
}
2627

2728
type InterfacesConfig struct {

decoder/decoder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ func (d *Decoder) processTransport(foundLayerTypes *[]gopacket.LayerType, udp *l
404404
}
405405
}
406406

407-
if pkt.Payload != nil {
407+
if pkt.ProtoType > 0 && pkt.Payload != nil {
408408
PacketQueue <- pkt
409409
} else {
410410
atomic.AddUint64(&d.unknownCount, 1)

main.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/sipcapture/heplify/sniffer"
1212
)
1313

14-
const version = "heplify 1.55"
14+
const version = "heplify 1.56"
1515

1616
func createFlags() {
1717

@@ -62,6 +62,7 @@ func createFlags() {
6262
flag.StringVar(&config.Cfg.Network, "nt", "udp", "Network types are [udp, tcp, tls]")
6363
flag.BoolVar(&config.Cfg.Protobuf, "protobuf", false, "Use Protobuf on wire")
6464
flag.BoolVar(&config.Cfg.Reassembly, "tcpassembly", false, "If true, tcpassembly will be enabled")
65+
flag.BoolVar(&config.Cfg.Version, "version", false, "Show heplify version")
6566
flag.Parse()
6667

6768
config.Cfg.Iface = &ifaceConfig
@@ -96,6 +97,11 @@ func checkCritErr(err error) {
9697
func main() {
9798
createFlags()
9899

100+
if config.Cfg.Version {
101+
fmt.Println(version)
102+
os.Exit(0)
103+
}
104+
99105
err := logp.Init("heplify", config.Cfg.Logging)
100106
checkCritErr(err)
101107

0 commit comments

Comments
 (0)