summaryrefslogtreecommitdiff
path: root/core/packets.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/packets.h')
-rw-r--r--core/packets.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/core/packets.h b/core/packets.h
deleted file mode 100644
index 4f410fb3..00000000
--- a/core/packets.h
+++ /dev/null
@@ -1,31 +0,0 @@
1/*
2 * packet.h -- Packet structure
3 *
4 * This file is donated to the Tox Project.
5 * Copyright 2013 plutooo
6 */
7
8typedef struct {
9 uint8_t id[CLIENT_ID_SIZE];
10
11} __attribute__((packed)) clientid_t;
12
13// Ping packet
14typedef struct {
15 uint8_t packet_id;
16 clientid_t client_id;
17 uint8_t nonce[crypto_box_NONCEBYTES];
18 uint64_t ping_id;
19 uint8_t padding[ENCRYPTION_PADDING];
20
21} __attribute__((packed)) pingreq_t;
22
23// Pong packet
24typedef struct {
25 uint8_t packet_id;
26 clientid_t client_id;
27 uint8_t nonce[crypto_box_NONCEBYTES];
28 uint64_t ping_id;
29 uint8_t padding[ENCRYPTION_PADDING];
30
31} __attribute__((packed)) pingres_t;