fix packet sending functions
This commit is contained in:
parent
d8f1c3dff7
commit
512c3af4ea
2 changed files with 16 additions and 5 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue