summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorslvr <slvr@unsafeio.com>2013-08-10 19:55:54 +0100
committerslvr <slvr@unsafeio.com>2013-08-10 19:55:54 +0100
commit5b6465528f88c4ed45fe57d5c2c21270f9109bb9 (patch)
tree2879741f06260a5390ae619954f53f141ba4ce54 /core
parentda8ef89e9ddc22af4cc639b9d07ec6a9fe2c6a11 (diff)
handle_ping_response function signature correction
Diffstat (limited to 'core')
-rw-r--r--core/ping.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ping.c b/core/ping.c
index eac71032..24ece06a 100644
--- a/core/ping.c
+++ b/core/ping.c
@@ -190,7 +190,7 @@ int handle_ping_request(IP_Port source, uint8_t* packet, uint32_t length)
190 return 0; 190 return 0;
191} 191}
192 192
193int handle_ping_response(uint8_t* packet, uint32_t length, IP_Port source) 193int handle_ping_response(IP_Port source, uint8_t* packet, uint32_t length)
194{ 194{
195 pingres_t* p = (pingres_t*) packet; 195 pingres_t* p = (pingres_t*) packet;
196 int rc; 196 int rc;