summaryrefslogtreecommitdiff
path: root/toxcore/ping.c
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2014-11-21 20:18:29 -0500
committerirungentoo <irungentoo@gmail.com>2014-11-21 20:18:29 -0500
commit6bbb9398558d226711450feea45417bcf3eafe70 (patch)
treeed946e3fa14ccc4aec0dbdddc481dcd1e2de3e69 /toxcore/ping.c
parente74225039e08e7be6e60cf7e2f5e279eb0559ce7 (diff)
Cleaned up packet length types in toxcore.
They are now all uint16_t instead of sometimes being uint32_t. Replaced some other uint32_t with unsigned ints.
Diffstat (limited to 'toxcore/ping.c')
-rw-r--r--toxcore/ping.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/toxcore/ping.c b/toxcore/ping.c
index 4f715ea2..a29c1a12 100644
--- a/toxcore/ping.c
+++ b/toxcore/ping.c
@@ -129,7 +129,7 @@ static int send_ping_response(PING *ping, IP_Port ipp, const uint8_t *client_id,
129 return sendpacket(ping->dht->net, ipp, pk, sizeof(pk)); 129 return sendpacket(ping->dht->net, ipp, pk, sizeof(pk));
130} 130}
131 131
132static int handle_ping_request(void *_dht, IP_Port source, const uint8_t *packet, uint32_t length) 132static int handle_ping_request(void *_dht, IP_Port source, const uint8_t *packet, uint16_t length)
133{ 133{
134 DHT *dht = _dht; 134 DHT *dht = _dht;
135 int rc; 135 int rc;
@@ -168,7 +168,7 @@ static int handle_ping_request(void *_dht, IP_Port source, const uint8_t *packet
168 return 0; 168 return 0;
169} 169}
170 170
171static int handle_ping_response(void *_dht, IP_Port source, const uint8_t *packet, uint32_t length) 171static int handle_ping_response(void *_dht, IP_Port source, const uint8_t *packet, uint16_t length)
172{ 172{
173 DHT *dht = _dht; 173 DHT *dht = _dht;
174 int rc; 174 int rc;
@@ -225,7 +225,7 @@ static int handle_ping_response(void *_dht, IP_Port source, const uint8_t *packe
225 * return 1 if it is. 225 * return 1 if it is.
226 * return 0 if it isn't. 226 * return 0 if it isn't.
227 */ 227 */
228static int in_list(const Client_data *list, uint32_t length, const uint8_t *client_id, IP_Port ip_port) 228static int in_list(const Client_data *list, uint16_t length, const uint8_t *client_id, IP_Port ip_port)
229{ 229{
230 uint32_t i; 230 uint32_t i;
231 231