summaryrefslogtreecommitdiff
path: root/toxcore/network.h
diff options
context:
space:
mode:
Diffstat (limited to 'toxcore/network.h')
-rw-r--r--toxcore/network.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/toxcore/network.h b/toxcore/network.h
index 0a0122be..685341ad 100644
--- a/toxcore/network.h
+++ b/toxcore/network.h
@@ -86,11 +86,14 @@ typedef union {
86 uint32_t i; 86 uint32_t i;
87} IP; 87} IP;
88 88
89typedef struct { 89typedef union {
90 IP ip; 90 struct {
91 uint16_t port; 91 IP ip;
92 /* Not used for anything right now. */ 92 uint16_t port;
93 uint16_t padding; 93 /* Not used for anything right now. */
94 uint16_t padding;
95 };
96 uint8_t uint8[8];
94} IP_Port; 97} IP_Port;
95 98
96typedef struct { 99typedef struct {