Move MPTP ports to 16bit. Until now they were on 8bit.
[swifty.git] / src / kernel / mptp.h
index b837617..51e5b0c 100644 (file)
 #endif
 
 struct mptp_dest {
-       uint32_t addr;
-       uint16_t port;
-       uint16_t bytes;
+    uint32_t addr;
+    uint16_t port;
 };
 
 struct sockaddr_mptp {
-       int count;
-       struct mptp_dest dests[0];
+    int count;
+    struct mptp_dest dests[0];
 };
 
 #ifdef __KERNEL__