fix packet sending functions

This commit is contained in:
Grant Limberg 2017-07-12 13:12:45 -07:00
parent d8f1c3dff7
commit 512c3af4ea
2 changed files with 16 additions and 5 deletions

View file

@ -173,12 +173,12 @@ public class Node {
*/
public ResultCode processWirePacket(
long now,
InetSocketAddress localAddress,
long localSocket,
InetSocketAddress remoteAddress,
byte[] packetData,
long[] nextBackgroundTaskDeadline) {
return processWirePacket(
nodeId, now, localAddress, remoteAddress, packetData,
nodeId, now, localSocket, remoteAddress, packetData,
nextBackgroundTaskDeadline);
}
@ -426,7 +426,7 @@ public class Node {
private native ResultCode processWirePacket(
long nodeId,
long now,
InetSocketAddress localAddress,
long localSocket,
InetSocketAddress remoteAddress,
byte[] packetData,
long[] nextBackgroundTaskDeadline);