gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet] branch master updated: indenting


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: indenting
Date: Thu, 19 Sep 2019 17:22:01 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new cac1c211b indenting
cac1c211b is described below

commit cac1c211ba0247b978961630b7ee147956b29e0a
Author: Christian Grothoff <address@hidden>
AuthorDate: Thu Sep 19 17:19:49 2019 +0200

    indenting
---
 src/gnsrecord/gnsrecord_misc.c | 205 +++++++++++++++++++++--------------------
 1 file changed, 104 insertions(+), 101 deletions(-)

diff --git a/src/gnsrecord/gnsrecord_misc.c b/src/gnsrecord/gnsrecord_misc.c
index 159f078ee..5061f8493 100644
--- a/src/gnsrecord/gnsrecord_misc.c
+++ b/src/gnsrecord/gnsrecord_misc.c
@@ -35,7 +35,7 @@
 #include "gnunet_tun_lib.h"
 
 
-#define LOG(kind, ...) GNUNET_log_from(kind, "gnsrecord", __VA_ARGS__)
+#define LOG(kind, ...) GNUNET_log_from (kind, "gnsrecord", __VA_ARGS__)
 
 /**
  * Convert a UTF-8 string to UTF-8 lowercase
@@ -43,12 +43,12 @@
  * @return converted result
  */
 char *
-GNUNET_GNSRECORD_string_to_lowercase(const char *src)
+GNUNET_GNSRECORD_string_to_lowercase (const char *src)
 {
   char *res;
 
-  res = GNUNET_strdup(src);
-  GNUNET_STRINGS_utf8_tolower(src, res);
+  res = GNUNET_strdup (src);
+  GNUNET_STRINGS_utf8_tolower (src, res);
   return res;
 }
 
@@ -62,19 +62,20 @@ GNUNET_GNSRECORD_string_to_lowercase(const char *src)
  * @return string form; will be overwritten by next call to 
#GNUNET_GNSRECORD_z2s
  */
 const char *
-GNUNET_GNSRECORD_z2s(const struct GNUNET_CRYPTO_EcdsaPublicKey *z)
+GNUNET_GNSRECORD_z2s (const struct GNUNET_CRYPTO_EcdsaPublicKey *z)
 {
   static char buf[sizeof(struct GNUNET_CRYPTO_EcdsaPublicKey) * 8];
   char *end;
 
-  end = GNUNET_STRINGS_data_to_string((const unsigned char *)z,
-                                      sizeof(struct 
GNUNET_CRYPTO_EcdsaPublicKey),
-                                      buf, sizeof(buf));
+  end = GNUNET_STRINGS_data_to_string ((const unsigned char *) z,
+                                       sizeof(struct
+                                              GNUNET_CRYPTO_EcdsaPublicKey),
+                                       buf, sizeof(buf));
   if (NULL == end)
-    {
-      GNUNET_break(0);
-      return NULL;
-    }
+  {
+    GNUNET_break (0);
+    return NULL;
+  }
   *end = '\0';
   return buf;
 }
@@ -90,51 +91,51 @@ GNUNET_GNSRECORD_z2s(const struct 
GNUNET_CRYPTO_EcdsaPublicKey *z)
  * @return #GNUNET_YES if the records are equal or #GNUNET_NO if they are not
  */
 int
-GNUNET_GNSRECORD_records_cmp(const struct GNUNET_GNSRECORD_Data *a,
-                             const struct GNUNET_GNSRECORD_Data *b)
+GNUNET_GNSRECORD_records_cmp (const struct GNUNET_GNSRECORD_Data *a,
+                              const struct GNUNET_GNSRECORD_Data *b)
 {
-  LOG(GNUNET_ERROR_TYPE_DEBUG,
-      "Comparing records\n");
+  LOG (GNUNET_ERROR_TYPE_DEBUG,
+       "Comparing records\n");
   if (a->record_type != b->record_type)
-    {
-      LOG(GNUNET_ERROR_TYPE_DEBUG,
-          "Record type %lu != %lu\n", a->record_type, b->record_type);
-      return GNUNET_NO;
-    }
+  {
+    LOG (GNUNET_ERROR_TYPE_DEBUG,
+         "Record type %lu != %lu\n", a->record_type, b->record_type);
+    return GNUNET_NO;
+  }
   if ((a->expiration_time != b->expiration_time) &&
       ((a->expiration_time != 0) && (b->expiration_time != 0)))
-    {
-      LOG(GNUNET_ERROR_TYPE_DEBUG,
-          "Expiration time %llu != %llu\n",
-          a->expiration_time,
-          b->expiration_time);
-      return GNUNET_NO;
-    }
+  {
+    LOG (GNUNET_ERROR_TYPE_DEBUG,
+         "Expiration time %llu != %llu\n",
+         a->expiration_time,
+         b->expiration_time);
+    return GNUNET_NO;
+  }
   if ((a->flags & GNUNET_GNSRECORD_RF_RCMP_FLAGS)
       != (b->flags & GNUNET_GNSRECORD_RF_RCMP_FLAGS))
-    {
-      LOG(GNUNET_ERROR_TYPE_DEBUG,
-          "Flags %lu (%lu) != %lu (%lu)\n", a->flags,
-          a->flags & GNUNET_GNSRECORD_RF_RCMP_FLAGS, b->flags,
-          b->flags & GNUNET_GNSRECORD_RF_RCMP_FLAGS);
-      return GNUNET_NO;
-    }
+  {
+    LOG (GNUNET_ERROR_TYPE_DEBUG,
+         "Flags %lu (%lu) != %lu (%lu)\n", a->flags,
+         a->flags & GNUNET_GNSRECORD_RF_RCMP_FLAGS, b->flags,
+         b->flags & GNUNET_GNSRECORD_RF_RCMP_FLAGS);
+    return GNUNET_NO;
+  }
   if (a->data_size != b->data_size)
-    {
-      LOG(GNUNET_ERROR_TYPE_DEBUG,
-          "Data size %lu != %lu\n",
-          a->data_size,
-          b->data_size);
-      return GNUNET_NO;
-    }
-  if (0 != memcmp(a->data, b->data, a->data_size))
-    {
-      LOG(GNUNET_ERROR_TYPE_DEBUG,
-          "Data contents do not match\n");
-      return GNUNET_NO;
-    }
-  LOG(GNUNET_ERROR_TYPE_DEBUG,
-      "Records are equal\n");
+  {
+    LOG (GNUNET_ERROR_TYPE_DEBUG,
+         "Data size %lu != %lu\n",
+         a->data_size,
+         b->data_size);
+    return GNUNET_NO;
+  }
+  if (0 != memcmp (a->data, b->data, a->data_size))
+  {
+    LOG (GNUNET_ERROR_TYPE_DEBUG,
+         "Data contents do not match\n");
+    return GNUNET_NO;
+  }
+  LOG (GNUNET_ERROR_TYPE_DEBUG,
+       "Records are equal\n");
   return GNUNET_YES;
 }
 
@@ -149,8 +150,9 @@ GNUNET_GNSRECORD_records_cmp(const struct 
GNUNET_GNSRECORD_Data *a,
  * @return absolute expiration time
  */
 struct GNUNET_TIME_Absolute
-GNUNET_GNSRECORD_record_get_expiration_time(unsigned int rd_count,
-                                            const struct GNUNET_GNSRECORD_Data 
*rd)
+GNUNET_GNSRECORD_record_get_expiration_time (unsigned int rd_count,
+                                             const struct
+                                             GNUNET_GNSRECORD_Data *rd)
 {
   struct GNUNET_TIME_Absolute expire;
   struct GNUNET_TIME_Absolute at;
@@ -162,44 +164,44 @@ GNUNET_GNSRECORD_record_get_expiration_time(unsigned int 
rd_count,
     return GNUNET_TIME_UNIT_ZERO_ABS;
   expire = GNUNET_TIME_UNIT_FOREVER_ABS;
   for (unsigned int c = 0; c < rd_count; c++)
+  {
+    if (0 != (rd[c].flags & GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION))
     {
-      if (0 != (rd[c].flags & GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION))
-        {
-          rt.rel_value_us = rd[c].expiration_time;
-          at = GNUNET_TIME_relative_to_absolute(rt);
-        }
-      else
-        {
-          at.abs_value_us = rd[c].expiration_time;
-        }
+      rt.rel_value_us = rd[c].expiration_time;
+      at = GNUNET_TIME_relative_to_absolute (rt);
+    }
+    else
+    {
+      at.abs_value_us = rd[c].expiration_time;
+    }
 
-      for (unsigned int c2 = 0; c2 < rd_count; c2++)
-        {
-          /* Check for shadow record */
-          if ((c == c2) ||
-              (rd[c].record_type != rd[c2].record_type) ||
-              (0 == (rd[c2].flags & GNUNET_GNSRECORD_RF_SHADOW_RECORD)))
-            continue;
-          /* We have a shadow record */
-          if (0 != (rd[c2].flags & GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION))
-            {
-              rt_shadow.rel_value_us = rd[c2].expiration_time;
-              at_shadow = GNUNET_TIME_relative_to_absolute(rt_shadow);
-            }
-          else
-            {
-              at_shadow.abs_value_us = rd[c2].expiration_time;
-            }
-          at = GNUNET_TIME_absolute_max(at,
-                                        at_shadow);
-        }
-      expire = GNUNET_TIME_absolute_min(at,
-                                        expire);
+    for (unsigned int c2 = 0; c2 < rd_count; c2++)
+    {
+      /* Check for shadow record */
+      if ((c == c2) ||
+          (rd[c].record_type != rd[c2].record_type) ||
+          (0 == (rd[c2].flags & GNUNET_GNSRECORD_RF_SHADOW_RECORD)))
+        continue;
+      /* We have a shadow record */
+      if (0 != (rd[c2].flags & GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION))
+      {
+        rt_shadow.rel_value_us = rd[c2].expiration_time;
+        at_shadow = GNUNET_TIME_relative_to_absolute (rt_shadow);
+      }
+      else
+      {
+        at_shadow.abs_value_us = rd[c2].expiration_time;
+      }
+      at = GNUNET_TIME_absolute_max (at,
+                                     at_shadow);
     }
-  LOG(GNUNET_ERROR_TYPE_DEBUG,
-      "Determined expiration time for block with %u records to be %s\n",
-      rd_count,
-      GNUNET_STRINGS_absolute_time_to_string(expire));
+    expire = GNUNET_TIME_absolute_min (at,
+                                       expire);
+  }
+  LOG (GNUNET_ERROR_TYPE_DEBUG,
+       "Determined expiration time for block with %u records to be %s\n",
+       rd_count,
+       GNUNET_STRINGS_absolute_time_to_string (expire));
   return expire;
 }
 
@@ -211,14 +213,15 @@ GNUNET_GNSRECORD_record_get_expiration_time(unsigned int 
rd_count,
  *         #GNUNET_NO if not
  */
 int
-GNUNET_GNSRECORD_is_expired(const struct GNUNET_GNSRECORD_Data *rd)
+GNUNET_GNSRECORD_is_expired (const struct GNUNET_GNSRECORD_Data *rd)
 {
   struct GNUNET_TIME_Absolute at;
 
   if (0 != (rd->flags & GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION))
     return GNUNET_NO;
   at.abs_value_us = rd->expiration_time;
-  return (0 == GNUNET_TIME_absolute_get_remaining(at).rel_value_us) ? 
GNUNET_YES : GNUNET_NO;
+  return (0 == GNUNET_TIME_absolute_get_remaining (at).rel_value_us) ?
+         GNUNET_YES : GNUNET_NO;
 }
 
 
@@ -233,17 +236,17 @@ GNUNET_GNSRECORD_is_expired(const struct 
GNUNET_GNSRECORD_Data *rd)
  *         key in an encoding suitable for DNS labels.
  */
 const char *
-GNUNET_GNSRECORD_pkey_to_zkey(const struct GNUNET_CRYPTO_EcdsaPublicKey *pkey)
+GNUNET_GNSRECORD_pkey_to_zkey (const struct GNUNET_CRYPTO_EcdsaPublicKey *pkey)
 {
   static char ret[128];
   char *pkeys;
 
-  pkeys = GNUNET_CRYPTO_ecdsa_public_key_to_string(pkey);
-  GNUNET_snprintf(ret,
-                  sizeof(ret),
-                  "%s",
-                  pkeys);
-  GNUNET_free(pkeys);
+  pkeys = GNUNET_CRYPTO_ecdsa_public_key_to_string (pkey);
+  GNUNET_snprintf (ret,
+                   sizeof(ret),
+                   "%s",
+                   pkeys);
+  GNUNET_free (pkeys);
   return ret;
 }
 
@@ -258,13 +261,13 @@ GNUNET_GNSRECORD_pkey_to_zkey(const struct 
GNUNET_CRYPTO_EcdsaPublicKey *pkey)
  * @return #GNUNET_SYSERR if @a zkey has the wrong syntax
  */
 int
-GNUNET_GNSRECORD_zkey_to_pkey(const char *zkey,
-                              struct GNUNET_CRYPTO_EcdsaPublicKey *pkey)
+GNUNET_GNSRECORD_zkey_to_pkey (const char *zkey,
+                               struct GNUNET_CRYPTO_EcdsaPublicKey *pkey)
 {
   if (GNUNET_OK !=
-      GNUNET_CRYPTO_ecdsa_public_key_from_string(zkey,
-                                                 strlen(zkey),
-                                                 pkey))
+      GNUNET_CRYPTO_ecdsa_public_key_from_string (zkey,
+                                                  strlen (zkey),
+                                                  pkey))
     return GNUNET_SYSERR;
   return GNUNET_OK;
 }

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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