added packet repeat delay
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jake Hillion 2021-02-27 19:01:59 +00:00
parent 74e6dd845e
commit c1f7c325c6
2 changed files with 3 additions and 1 deletions

View File

@ -119,6 +119,7 @@ func (f *InitiatedFlow) Reconnect() error {
}
_ = f.sendPacket(p, f.g)
time.Sleep(1 * time.Second)
}
}()

View File

@ -32,4 +32,5 @@ function mpbl3p_udp.dissector(buffer, pinfo, tree)
end
end
DissectorTable.get("udp.port"):add(1234, mpbl3p_udp)
DissectorTable.get("udp.port"):add(4724, mpbl3p_udp)
DissectorTable.get("udp.port"):add(4725, mpbl3p_udp)