-better logging in NAT
[oweals/gnunet.git] / src / nat / nat.h
index bff444e6d299f41d4693619867612bb417e40482..a0ef4659337e6bc1cf334f93210b2547da84c7cb 100644 (file)
@@ -28,6 +28,9 @@
 #define NAT_H
 #include "gnunet_util_lib.h"
 
+
+GNUNET_NETWORK_STRUCT_BEGIN
+
 /**
  * Request to test NAT traversal.
  */
@@ -35,17 +38,17 @@ struct GNUNET_NAT_TestMessage
 {
   /**
    * Header with type "GNUNET_MESSAGE_TYPE_NAT_TEST"
-   */ 
+   */
   struct GNUNET_MessageHeader header;
 
   /**
    * IPv4 target IP address
-   */ 
+   */
   uint32_t dst_ipv4;
 
   /**
    * Port to use, 0 to send dummy ICMP response.
-   */ 
+   */
   uint16_t dport;
 
   /**
@@ -59,5 +62,6 @@ struct GNUNET_NAT_TestMessage
   int32_t is_tcp;
 
 };
+GNUNET_NETWORK_STRUCT_END
 
 #endif