added ttl parameter to WirePacketSendFunction

This commit is contained in:
Grant Limberg 2015-11-14 17:40:17 -08:00
parent 0d9f33dc4f
commit 0508a41afd
2 changed files with 5 additions and 3 deletions

View file

@ -45,5 +45,6 @@ public interface PacketSender {
public int onSendPacketRequested(
InetSocketAddress localAddr,
InetSocketAddress remoteAddr,
byte[] packetData);
byte[] packetData,
int ttl);
}