gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r35761 - in gnunet/src: hello transport


From: gnunet
Subject: [GNUnet-SVN] r35761 - in gnunet/src: hello transport
Date: Wed, 20 May 2015 19:04:56 +0200

Author: grothoff
Date: 2015-05-20 19:04:56 +0200 (Wed, 20 May 2015)
New Revision: 35761

Modified:
   gnunet/src/hello/hello.c
   gnunet/src/transport/gnunet-service-transport_validation.c
Log:
-indentation, doxygen

Modified: gnunet/src/hello/hello.c
===================================================================
--- gnunet/src/hello/hello.c    2015-05-20 15:52:13 UTC (rev 35760)
+++ gnunet/src/hello/hello.c    2015-05-20 17:04:56 UTC (rev 35761)
@@ -84,7 +84,7 @@
 
 
 /**
- * Context for 'add_address_to_hello'.
+ * Context for #add_address_to_hello().
  */
 struct GNUNET_HELLO_ParseUriContext
 {
@@ -116,7 +116,8 @@
 };
 
 
-/** Return HELLO type
+/**
+ * Return HELLO type
  *
  * @param h HELLO Message to test
  * @return #GNUNET_YES or #GNUNET_NO
@@ -130,7 +131,6 @@
 }
 
 
-
 /**
  * Copy the given address information into
  * the given buffer using the format of HELLOs.
@@ -144,7 +144,8 @@
  */
 size_t
 GNUNET_HELLO_add_address (const struct GNUNET_HELLO_Address *address,
-                          struct GNUNET_TIME_Absolute expiration, char *target,
+                          struct GNUNET_TIME_Absolute expiration,
+                          char *target,
                           size_t max)
 {
   uint16_t alen;
@@ -280,7 +281,8 @@
 struct GNUNET_HELLO_Message *
 GNUNET_HELLO_iterate_addresses (const struct GNUNET_HELLO_Message *msg,
                                 int return_modified,
-                                GNUNET_HELLO_AddressIterator it, void *it_cls)
+                                GNUNET_HELLO_AddressIterator it,
+                                void *it_cls)
 {
   struct GNUNET_HELLO_Address address;
   uint16_t msize;
@@ -347,16 +349,39 @@
 }
 
 
+/**
+ * Closure for #get_match_exp().
+ */
 struct ExpireContext
 {
+  /**
+   * Address we are looking for.
+   */
   const struct GNUNET_HELLO_Address *address;
+
+  /**
+   * Set to #GNUNET_YES if we found the @e address.
+   */
   int found;
+
+  /**
+   * Set to the expiration of the match if @e found is #GNUNET_YES.
+   */
   struct GNUNET_TIME_Absolute expiration;
 };
 
 
+/**
+ * Store the expiration time of an address that matches the template.
+ *
+ * @param cls the `struct ExpireContext`
+ * @param address address to match against the template
+ * @param expiration expiration time of @a address, to store in @a cls
+ * @return #GNUNET_SYSERR if we found a matching address, #GNUNET_OK otherwise
+ */
 static int
-get_match_exp (void *cls, const struct GNUNET_HELLO_Address *address,
+get_match_exp (void *cls,
+               const struct GNUNET_HELLO_Address *address,
                struct GNUNET_TIME_Absolute expiration)
 {
   struct ExpireContext *ec = cls;
@@ -371,21 +396,60 @@
 }
 
 
+/**
+ *
+ */
 struct MergeContext
 {
+  /**
+   *
+   */
   const struct GNUNET_HELLO_Message *h1;
+
+  /**
+   *
+   */
   const struct GNUNET_HELLO_Message *h2;
+
+  /**
+   *
+   */
   const struct GNUNET_HELLO_Message *other;
+
+  /**
+   *
+   */
   char *buf;
+
+  /**
+   *
+   */
   size_t max;
+
+  /**
+   *
+   */
   size_t ret;
+
+  /**
+   *
+   */
   int take_equal;
 
 };
 
 
+/**
+ *
+ *
+ * @param cls
+ * @param address
+ * @param expiration
+ * @return
+ */
 static int
-copy_latest (void *cls, const struct GNUNET_HELLO_Address *address,
+copy_latest (void *cls,
+             const struct GNUNET_HELLO_Address *address,
              struct GNUNET_TIME_Absolute expiration)
 {
   struct MergeContext *mc = cls;
@@ -407,8 +471,13 @@
 }
 
 
+/**
+ *
+ */
 static ssize_t
-merge_addr (void *cls, size_t max, void *buf)
+merge_addr (void *cls,
+            size_t max,
+            void *buf)
 {
   struct MergeContext *mc = cls;
 
@@ -449,24 +518,46 @@
   else
     friend_only = ntohl (h1->friend_only); /* Both HELLO's have the same type 
*/
 
-  return GNUNET_HELLO_create (&h1->publicKey, &merge_addr, &mc, friend_only);
+  return GNUNET_HELLO_create (&h1->publicKey,
+                              &merge_addr,
+                              &mc,
+                              friend_only);
 }
 
 
+/**
+ *
+ */
 struct DeltaContext
 {
+  /**
+   *
+   */
   struct GNUNET_TIME_Absolute expiration_limit;
 
+  /**
+   *
+   */
   GNUNET_HELLO_AddressIterator it;
 
+  /**
+   * Closure for @e it.
+   */
   void *it_cls;
 
+  /**
+   *
+   */
   const struct GNUNET_HELLO_Message *old_hello;
 };
 
 
+/**
+ *
+ */
 static int
-delta_match (void *cls, const struct GNUNET_HELLO_Address *address,
+delta_match (void *cls,
+             const struct GNUNET_HELLO_Address *address,
              struct GNUNET_TIME_Absolute expiration)
 {
   struct DeltaContext *dc = cls;
@@ -475,7 +566,9 @@
 
   ec.address = address;
   ec.found = GNUNET_NO;
-  GNUNET_HELLO_iterate_addresses (dc->old_hello, GNUNET_NO, &get_match_exp,
+  GNUNET_HELLO_iterate_addresses (dc->old_hello,
+                                  GNUNET_NO,
+                                  &get_match_exp,
                                   &ec);
   if ((ec.found == GNUNET_YES) &&
       ((ec.expiration.abs_value_us > expiration.abs_value_us) ||
@@ -495,15 +588,12 @@
  * @param expiration_limit ignore addresses in old_hello
  *        that expired before the given time stamp
  * @param it iterator to call on each address
- * @param it_cls closure for it
+ * @param it_cls closure for @a it
  */
 void
-GNUNET_HELLO_iterate_new_addresses (const struct GNUNET_HELLO_Message
-                                    *new_hello,
-                                    const struct GNUNET_HELLO_Message
-                                    *old_hello,
-                                    struct GNUNET_TIME_Absolute
-                                    expiration_limit,
+GNUNET_HELLO_iterate_new_addresses (const struct GNUNET_HELLO_Message 
*new_hello,
+                                    const struct GNUNET_HELLO_Message 
*old_hello,
+                                    struct GNUNET_TIME_Absolute 
expiration_limit,
                                     GNUNET_HELLO_AddressIterator it,
                                     void *it_cls)
 {
@@ -597,25 +687,50 @@
 }
 
 
+/**
+ *
+ */
 struct EqualsContext
 {
+  /**
+   *
+   */
   struct GNUNET_TIME_Absolute expiration_limit;
 
+  /**
+   *
+   */
   struct GNUNET_TIME_Absolute result;
 
+  /**
+   *
+   */
   const struct GNUNET_HELLO_Message *h2;
 
+  /**
+   *
+   */
   const struct GNUNET_HELLO_Address *address;
 
+  /**
+   *
+   */
   struct GNUNET_TIME_Absolute expiration;
 
+  /**
+   *
+   */
   int found;
 
 };
 
 
+/**
+ *
+ */
 static int
-find_other_matching (void *cls, const struct GNUNET_HELLO_Address *address,
+find_other_matching (void *cls,
+                     const struct GNUNET_HELLO_Address *address,
                      struct GNUNET_TIME_Absolute expiration)
 {
   struct EqualsContext *ec = cls;
@@ -633,8 +748,12 @@
 }
 
 
+/**
+ *
+ */
 static int
-find_matching (void *cls, const struct GNUNET_HELLO_Address *address,
+find_matching (void *cls,
+               const struct GNUNET_HELLO_Address *address,
                struct GNUNET_TIME_Absolute expiration)
 {
   struct EqualsContext *ec = cls;
@@ -687,17 +806,27 @@
   ec.expiration_limit = now;
   ec.result = GNUNET_TIME_UNIT_FOREVER_ABS;
   ec.h2 = h2;
-  GNUNET_HELLO_iterate_addresses (h1, GNUNET_NO, &find_matching, &ec);
+  GNUNET_HELLO_iterate_addresses (h1,
+                                  GNUNET_NO,
+                                  &find_matching,
+                                  &ec);
   if (ec.result.abs_value_us == GNUNET_TIME_UNIT_ZERO.rel_value_us)
     return ec.result;
   ec.h2 = h1;
-  GNUNET_HELLO_iterate_addresses (h2, GNUNET_NO, &find_matching, &ec);
+  GNUNET_HELLO_iterate_addresses (h2,
+                                  GNUNET_NO,
+                                  &find_matching,
+                                  &ec);
   return ec.result;
 }
 
 
+/**
+ *
+ */
 static int
-find_max_expire (void *cls, const struct GNUNET_HELLO_Address *address,
+find_max_expire (void *cls,
+                 const struct GNUNET_HELLO_Address *address,
                  struct GNUNET_TIME_Absolute expiration)
 {
   struct GNUNET_TIME_Absolute *max = cls;
@@ -719,10 +848,14 @@
   struct GNUNET_TIME_Absolute ret;
 
   ret.abs_value_us = 0;
-  GNUNET_HELLO_iterate_addresses (msg, GNUNET_NO, &find_max_expire, &ret);
+  GNUNET_HELLO_iterate_addresses (msg,
+                                  GNUNET_NO,
+                                  &find_max_expire,
+                                  &ret);
   return ret;
 }
 
+
 /**
  * GNUnet URIs are of the general form "gnunet://MODULE/IDENTIFIER".
  * The specific structure of "IDENTIFIER" depends on the module and
@@ -766,55 +899,19 @@
  */
 
 
-/* ************************* Compose HELLO URI ************************** */
 
-#if 0
 /**
- * Replace all characters in the input 'in' according
- * to the mapping.  The mapping says to map each character
- * in 'oldchars' to the corresponding character (by offset)
- * in 'newchars'.
- *
- * @param in input string to remap
- * @param oldchars characters to replace
- * @param newchars replacement characters, must have same length as 'oldchars'
- * @return copy of string with replacement applied.
- */
-static char *
-map_characters (const char *in,
-               const char *oldchars,
-               const char *newchars)
-{
-  char *ret;
-  const char *off;
-  size_t i;
-
-  GNUNET_assert (strlen (oldchars) == strlen (newchars));
-  ret = GNUNET_strdup (in);
-  i = 0;
-  while (ret[i] != '\0')
-  {
-    off = strchr (oldchars, ret[i]);
-    if (NULL != off)
-      ret[i] = newchars[off - oldchars];
-    i++;
-  }
-  return ret;
-}
-#endif
-
-
-/**
  * Function that is called on each address of this peer.
  * Expands the corresponding URI string.
  *
- * @param cls the 'GNUNET_HELLO_GetUriContext'
+ * @param cls the `struct GNUNET_HELLO_ComposeUriContext`
  * @param address address to add
  * @param expiration expiration time for the address
- * @return GNUNET_OK (continue iteration).
+ * @return #GNUNET_OK (continue iteration).
  */
 static int
-add_address_to_uri (void *cls, const struct GNUNET_HELLO_Address *address,
+add_address_to_uri (void *cls,
+                    const struct GNUNET_HELLO_Address *address,
                     struct GNUNET_TIME_Absolute expiration)
 {
   struct GNUNET_HELLO_ComposeUriContext *ctx = cls;
@@ -903,10 +1000,10 @@
  * We're building a HELLO.  Parse the next address from the
  * parsing context and append it.
  *
- * @param cls the 'struct GNUNET_HELLO_AddressParsingContext'
+ * @param cls the `struct GNUNET_HELLO_ParseUriContext`
  * @param max number of bytes available for HELLO construction
  * @param buffer where to copy the next address (in binary format)
- * @return number of bytes added to buffer, GNUNET_SYSERR on error
+ * @return number of bytes added to buffer, #GNUNET_SYSERR on error
  */
 static ssize_t
 add_address_to_hello (void *cls, size_t max, void *buffer)
@@ -926,7 +1023,6 @@
   struct GNUNET_HELLO_Address haddr;
   ssize_t ret;
 
-
   if (NULL == ctx->pos)
     return GNUNET_SYSERR;
   if (GNUNET_HELLO_URI_SEP != ctx->pos[0])
@@ -1049,7 +1145,7 @@
  * @param pubkey Pointer to struct where public key is parsed
  * @param hello Pointer to struct where hello message is parsed
  * @param plugins_find Function to find transport plugins by name
- * @return GNUNET_OK on success, GNUNET_SYSERR if the URI was invalid, 
GNUNET_NO on other errors
+ * @return #GNUNET_OK on success, #GNUNET_SYSERR if the URI was invalid, 
#GNUNET_NO on other errors
  */
 int
 GNUNET_HELLO_parse_uri (const char *uri,

Modified: gnunet/src/transport/gnunet-service-transport_validation.c
===================================================================
--- gnunet/src/transport/gnunet-service-transport_validation.c  2015-05-20 
15:52:13 UTC (rev 35760)
+++ gnunet/src/transport/gnunet-service-transport_validation.c  2015-05-20 
17:04:56 UTC (rev 35761)
@@ -1434,7 +1434,9 @@
   {
     /* We have a cached and valid signature for this peer,
      * try to compare instead of verify */
-    if (0 == memcmp (&ve->pong_sig_cache, &pong->signature, sizeof (struct 
GNUNET_CRYPTO_EddsaSignature)))
+    if (0 == memcmp (&ve->pong_sig_cache,
+                     &pong->signature,
+                     sizeof (struct GNUNET_CRYPTO_EddsaSignature)))
     {
       /* signatures are identical, we can skip verification */
       sig_res = GNUNET_OK;
@@ -1451,7 +1453,8 @@
   {
     /* Do expensive verification */
     sig_res = GNUNET_CRYPTO_eddsa_verify 
(GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN,
-                                          &pong->purpose, &pong->signature,
+                                          &pong->purpose,
+                                          &pong->signature,
                                           &ve->address->peer.public_key);
     if (sig_res == GNUNET_SYSERR)
     {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]