-ensure external symbols have proper prefix for conversation service
[oweals/gnunet.git] / src / gns / gns.h
index c8d27b673767ecb609cecbb0d24bcd1b93b50a5c..24f543f71e8685ecc65cc20709c17e5f39332c14 100644 (file)
@@ -4,7 +4,7 @@
 
       GNUnet is free software; you can redistribute it and/or modify
       it under the terms of the GNU General Public License as published
-      by the Free Software Foundation; either version 2, or (at your
+      by the Free Software Foundation; either version 3, or (at your
       option) any later version.
 
       GNUnet is distributed in the hope that it will be useful, but
@@ -51,7 +51,7 @@ GNUNET_NETWORK_STRUCT_BEGIN
 struct GNUNET_GNS_ClientLookupMessage
 {
   /**
-   * Header of type GNUNET_MESSAGE_TYPE_GNS_CLIENT_LOOKUP
+   * Header of type #GNUNET_MESSAGE_TYPE_GNS_LOOKUP
    */
   struct GNUNET_MessageHeader header;
 
@@ -63,7 +63,7 @@ struct GNUNET_GNS_ClientLookupMessage
   /**
    * Zone that is to be used for lookup
    */
-  struct GNUNET_CRYPTO_EccPublicKey zone;
+  struct GNUNET_CRYPTO_EccPublicSignKey zone;
 
   /**
    * Only check cached results
@@ -78,10 +78,10 @@ struct GNUNET_GNS_ClientLookupMessage
   /**
    * the type of record to look up
    */
-  int32_t type;
+  int32_t type GNUNET_PACKED;
   
   /**
-   * The key for shorten, if 'have_key' is set 
+   * The key for shorten, if @e have_key is set 
    */
   struct GNUNET_CRYPTO_EccPrivateKey shorten_key;
 
@@ -95,7 +95,7 @@ struct GNUNET_GNS_ClientLookupMessage
 struct GNUNET_GNS_ClientLookupResultMessage
 {
   /**
-    * Header of type GNUNET_MESSAGE_TYPE_GNS_CLIENT_RESULT
+    * Header of type #GNUNET_MESSAGE_TYPE_GNS_LOOKUP_RESULT
    */
   struct GNUNET_MessageHeader header;
 
@@ -107,7 +107,7 @@ struct GNUNET_GNS_ClientLookupResultMessage
   /**
    * The number of records contained in response
    */  
-  uint32_t rd_count;
+  uint32_t rd_count GNUNET_PACKED;
 
   /* followed by rd_count GNUNET_NAMESTORE_RecordData structs*/