obsolete due to alpine policy
[oweals/gnunet.git] / src / reclaim / gnunet-reclaim.c
index 5160aef7fa3bb958d8c03eac36268cc14715e92b..c5f0ed4faee5eb78b25fda9b7821f33e1ffdd59c 100644 (file)
@@ -168,176 +168,176 @@ static char *attr_delete;
 static struct GNUNET_RECLAIM_ATTRIBUTE_Claim *attr_to_delete;
 
 static void
-do_cleanup(void *cls)
+do_cleanup (void *cls)
 {
   cleanup_task = NULL;
   if (NULL != timeout)
-    GNUNET_SCHEDULER_cancel(timeout);
+    GNUNET_SCHEDULER_cancel (timeout);
   if (NULL != reclaim_op)
-    GNUNET_RECLAIM_cancel(reclaim_op);
+    GNUNET_RECLAIM_cancel (reclaim_op);
   if (NULL != attr_iterator)
-    GNUNET_RECLAIM_get_attributes_stop(attr_iterator);
+    GNUNET_RECLAIM_get_attributes_stop (attr_iterator);
   if (NULL != ticket_iterator)
-    GNUNET_RECLAIM_ticket_iteration_stop(ticket_iterator);
+    GNUNET_RECLAIM_ticket_iteration_stop (ticket_iterator);
   if (NULL != reclaim_handle)
-    GNUNET_RECLAIM_disconnect(reclaim_handle);
+    GNUNET_RECLAIM_disconnect (reclaim_handle);
   if (NULL != identity_handle)
-    GNUNET_IDENTITY_disconnect(identity_handle);
+    GNUNET_IDENTITY_disconnect (identity_handle);
   if (NULL != abe_key)
-    GNUNET_free(abe_key);
+    GNUNET_free (abe_key);
   if (NULL != attr_list)
-    GNUNET_free(attr_list);
+    GNUNET_free (attr_list);
   if (NULL != attr_to_delete)
-    GNUNET_free(attr_to_delete);
+    GNUNET_free (attr_to_delete);
 }
 
 static void
-ticket_issue_cb(void *cls, const struct GNUNET_RECLAIM_Ticket *ticket)
+ticket_issue_cb (void *cls, const struct GNUNET_RECLAIM_Ticket *ticket)
 {
   char *ticket_str;
 
   reclaim_op = NULL;
   if (NULL != ticket)
-    {
-      ticket_str =
-        GNUNET_STRINGS_data_to_string_alloc(ticket,
-                                            sizeof(
-                                              struct GNUNET_RECLAIM_Ticket));
-      printf("%s\n", ticket_str);
-      GNUNET_free(ticket_str);
-    }
-  cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
+  {
+    ticket_str =
+      GNUNET_STRINGS_data_to_string_alloc (ticket,
+                                           sizeof(
+                                             struct GNUNET_RECLAIM_Ticket));
+    printf ("%s\n", ticket_str);
+    GNUNET_free (ticket_str);
+  }
+  cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
 }
 
 static void
-store_attr_cont(void *cls, int32_t success, const char *emsg)
+store_attr_cont (void *cls, int32_t success, const char *emsg)
 {
   reclaim_op = NULL;
   if (GNUNET_SYSERR == success)
-    {
-      fprintf(stderr, "%s\n", emsg);
-    }
-  cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
+  {
+    fprintf (stderr, "%s\n", emsg);
+  }
+  cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
 }
 
 static void
-process_attrs(void *cls,
-              const struct GNUNET_CRYPTO_EcdsaPublicKey *identity,
-              const struct GNUNET_RECLAIM_ATTRIBUTE_Claim *attr)
+process_attrs (void *cls,
+               const struct GNUNET_CRYPTO_EcdsaPublicKey *identity,
+               const struct GNUNET_RECLAIM_ATTRIBUTE_Claim *attr)
 {
   char *value_str;
   char *id;
   const char *attr_type;
 
   if (NULL == identity)
-    {
-      reclaim_op = NULL;
-      cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
-      return;
-    }
+  {
+    reclaim_op = NULL;
+    cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
+    return;
+  }
   if (NULL == attr)
-    {
-      ret = 1;
-      return;
-    }
-  value_str = GNUNET_RECLAIM_ATTRIBUTE_value_to_string(attr->type,
-                                                       attr->data,
-                                                       attr->data_size);
-  attr_type = GNUNET_RECLAIM_ATTRIBUTE_number_to_typename(attr->type);
-  id = GNUNET_STRINGS_data_to_string_alloc(&attr->id, sizeof(uint64_t));
-  fprintf(stdout,
-          "Name: %s; Value: %s (%s); Version %u; ID: %s\n",
-          attr->name,
-          value_str,
-          attr_type,
-          attr->version,
-          id);
-  GNUNET_free(id);
+  {
+    ret = 1;
+    return;
+  }
+  value_str = GNUNET_RECLAIM_ATTRIBUTE_value_to_string (attr->type,
+                                                        attr->data,
+                                                        attr->data_size);
+  attr_type = GNUNET_RECLAIM_ATTRIBUTE_number_to_typename (attr->type);
+  id = GNUNET_STRINGS_data_to_string_alloc (&attr->id, sizeof(uint64_t));
+  fprintf (stdout,
+           "Name: %s; Value: %s (%s); Version %u; ID: %s\n",
+           attr->name,
+           value_str,
+           attr_type,
+           attr->version,
+           id);
+  GNUNET_free (id);
 }
 
 static void
-ticket_iter_err(void *cls)
+ticket_iter_err (void *cls)
 {
   ticket_iterator = NULL;
-  fprintf(stderr, "Failed to iterate over tickets\n");
-  cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
+  fprintf (stderr, "Failed to iterate over tickets\n");
+  cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
 }
 
 static void
-ticket_iter_fin(void *cls)
+ticket_iter_fin (void *cls)
 {
   ticket_iterator = NULL;
-  cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
+  cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
 }
 
 static void
-ticket_iter(void *cls, const struct GNUNET_RECLAIM_Ticket *ticket)
+ticket_iter (void *cls, const struct GNUNET_RECLAIM_Ticket *ticket)
 {
   char *aud;
   char *ref;
   char *tkt;
 
   aud =
-    GNUNET_STRINGS_data_to_string_alloc(&ticket->audience,
-                                        sizeof(struct
-                                               GNUNET_CRYPTO_EcdsaPublicKey));
-  ref = GNUNET_STRINGS_data_to_string_alloc(&ticket->rnd, sizeof(uint64_t));
+    GNUNET_STRINGS_data_to_string_alloc (&ticket->audience,
+                                         sizeof(struct
+                                                GNUNET_CRYPTO_EcdsaPublicKey));
+  ref = GNUNET_STRINGS_data_to_string_alloc (&ticket->rnd, sizeof(uint64_t));
   tkt =
-    GNUNET_STRINGS_data_to_string_alloc(ticket,
-                                        sizeof(struct GNUNET_RECLAIM_Ticket));
-  fprintf(stdout, "Ticket: %s | ID: %s | Audience: %s\n", tkt, ref, aud);
-  GNUNET_free(aud);
-  GNUNET_free(ref);
-  GNUNET_free(tkt);
-  GNUNET_RECLAIM_ticket_iteration_next(ticket_iterator);
+    GNUNET_STRINGS_data_to_string_alloc (ticket,
+                                         sizeof(struct GNUNET_RECLAIM_Ticket));
+  fprintf (stdout, "Ticket: %s | ID: %s | Audience: %s\n", tkt, ref, aud);
+  GNUNET_free (aud);
+  GNUNET_free (ref);
+  GNUNET_free (tkt);
+  GNUNET_RECLAIM_ticket_iteration_next (ticket_iterator);
 }
 
 static void
-iter_error(void *cls)
+iter_error (void *cls)
 {
   attr_iterator = NULL;
-  fprintf(stderr, "Failed to iterate over attributes\n");
-  cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
+  fprintf (stderr, "Failed to iterate over attributes\n");
+  cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
 }
 
 static void
-timeout_task(void *cls)
+timeout_task (void *cls)
 {
   timeout = NULL;
   ret = 1;
-  fprintf(stderr, "Timeout\n");
+  fprintf (stderr, "Timeout\n");
   if (NULL == cleanup_task)
-    cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
+    cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
 }
 
 static void
-process_rvk(void *cls, int success, const char *msg)
+process_rvk (void *cls, int success, const char *msg)
 {
   reclaim_op = NULL;
   if (GNUNET_OK != success)
-    {
-      fprintf(stderr, "Revocation failed.\n");
-      ret = 1;
-    }
-  cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
+  {
+    fprintf (stderr, "Revocation failed.\n");
+    ret = 1;
+  }
+  cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
 }
 
 
 static void
-process_delete(void *cls, int success, const char *msg)
+process_delete (void *cls, int success, const char *msg)
 {
   reclaim_op = NULL;
   if (GNUNET_OK != success)
-    {
-      fprintf(stderr, "Deletion failed.\n");
-      ret = 1;
-    }
-  cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
+  {
+    fprintf (stderr, "Deletion failed.\n");
+    ret = 1;
+  }
+  cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
 }
 
 
 static void
-iter_finished(void *cls)
+iter_finished (void *cls)
 {
   char *data;
   size_t data_size;
@@ -345,97 +345,97 @@ iter_finished(void *cls)
 
   attr_iterator = NULL;
   if (list)
-    {
-      cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
-      return;
-    }
+  {
+    cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
+    return;
+  }
 
   if (issue_attrs)
-    {
-      reclaim_op = GNUNET_RECLAIM_ticket_issue(reclaim_handle,
-                                               pkey,
-                                               &rp_key,
-                                               attr_list,
-                                               &ticket_issue_cb,
-                                               NULL);
-      return;
-    }
+  {
+    reclaim_op = GNUNET_RECLAIM_ticket_issue (reclaim_handle,
+                                              pkey,
+                                              &rp_key,
+                                              attr_list,
+                                              &ticket_issue_cb,
+                                              NULL);
+    return;
+  }
   if (consume_ticket)
-    {
-      reclaim_op = GNUNET_RECLAIM_ticket_consume(reclaim_handle,
-                                                 pkey,
-                                                 &ticket,
-                                                 &process_attrs,
-                                                 NULL);
-      timeout = GNUNET_SCHEDULER_add_delayed(
-        GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 10),
-        &timeout_task,
-        NULL);
-      return;
-    }
-  if (revoke_ticket)
-    {
-      reclaim_op = GNUNET_RECLAIM_ticket_revoke(reclaim_handle,
+  {
+    reclaim_op = GNUNET_RECLAIM_ticket_consume (reclaim_handle,
                                                 pkey,
                                                 &ticket,
-                                                &process_rvk,
+                                                &process_attrs,
                                                 NULL);
-      return;
-    }
+    timeout = GNUNET_SCHEDULER_add_delayed (
+      GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10),
+      &timeout_task,
+      NULL);
+    return;
+  }
+  if (revoke_ticket)
+  {
+    reclaim_op = GNUNET_RECLAIM_ticket_revoke (reclaim_handle,
+                                               pkey,
+                                               &ticket,
+                                               &process_rvk,
+                                               NULL);
+    return;
+  }
   if (attr_delete)
+  {
+    if (NULL == attr_to_delete)
     {
-      if (NULL == attr_to_delete)
-        {
-          fprintf(stdout, "No such attribute ``%s''\n", attr_delete);
-          return;
-        }
-      reclaim_op = GNUNET_RECLAIM_attribute_delete(reclaim_handle,
-                                                   pkey,
-                                                   attr_to_delete,
-                                                   &process_delete,
-                                                   NULL);
+      fprintf (stdout, "No such attribute ``%s''\n", attr_delete);
       return;
     }
+    reclaim_op = GNUNET_RECLAIM_attribute_delete (reclaim_handle,
+                                                  pkey,
+                                                  attr_to_delete,
+                                                  &process_delete,
+                                                  NULL);
+    return;
+  }
   if (attr_name)
-    {
-      if (NULL == type_str)
-        type = GNUNET_RECLAIM_ATTRIBUTE_TYPE_STRING;
-      else
-        type = GNUNET_RECLAIM_ATTRIBUTE_typename_to_number(type_str);
-
-      GNUNET_assert(GNUNET_SYSERR !=
-                    GNUNET_RECLAIM_ATTRIBUTE_string_to_value(type,
+  {
+    if (NULL == type_str)
+      type = GNUNET_RECLAIM_ATTRIBUTE_TYPE_STRING;
+    else
+      type = GNUNET_RECLAIM_ATTRIBUTE_typename_to_number (type_str);
+
+    GNUNET_assert (GNUNET_SYSERR !=
+                   GNUNET_RECLAIM_ATTRIBUTE_string_to_value (type,
                                                              attr_value,
-                                                             (void **)&data,
+                                                             (void **) &data,
                                                              &data_size));
-      if (NULL != claim)
-        {
-          claim->type = type;
-          claim->data = data;
-          claim->data_size = data_size;
-        }
-      else
-        {
-          claim =
-            GNUNET_RECLAIM_ATTRIBUTE_claim_new(attr_name, type, data, data_size);
-        }
-      reclaim_op = GNUNET_RECLAIM_attribute_store(reclaim_handle,
-                                                  pkey,
-                                                  claim,
-                                                  &exp_interval,
-                                                  &store_attr_cont,
-                                                  NULL);
-      GNUNET_free(data);
-      GNUNET_free(claim);
-      return;
+    if (NULL != claim)
+    {
+      claim->type = type;
+      claim->data = data;
+      claim->data_size = data_size;
     }
-  cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
+    else
+    {
+      claim =
+        GNUNET_RECLAIM_ATTRIBUTE_claim_new (attr_name, type, data, data_size);
+    }
+    reclaim_op = GNUNET_RECLAIM_attribute_store (reclaim_handle,
+                                                 pkey,
+                                                 claim,
+                                                 &exp_interval,
+                                                 &store_attr_cont,
+                                                 NULL);
+    GNUNET_free (data);
+    GNUNET_free (claim);
+    return;
+  }
+  cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
 }
 
 static void
-iter_cb(void *cls,
-        const struct GNUNET_CRYPTO_EcdsaPublicKey *identity,
-        const struct GNUNET_RECLAIM_ATTRIBUTE_Claim *attr)
+iter_cb (void *cls,
+         const struct GNUNET_CRYPTO_EcdsaPublicKey *identity,
+         const struct GNUNET_RECLAIM_ATTRIBUTE_Claim *attr)
 {
   struct GNUNET_RECLAIM_ATTRIBUTE_ClaimListEntry *le;
   char *attrs_tmp;
@@ -445,260 +445,260 @@ iter_cb(void *cls,
   const char *attr_type;
 
   if ((NULL != attr_name) && (NULL != claim))
+  {
+    if (0 == strcasecmp (attr_name, attr->name))
     {
-      if (0 == strcasecmp(attr_name, attr->name))
-        {
-          claim = GNUNET_RECLAIM_ATTRIBUTE_claim_new(attr->name,
-                                                     attr->type,
-                                                     attr->data,
-                                                     attr->data_size);
-        }
+      claim = GNUNET_RECLAIM_ATTRIBUTE_claim_new (attr->name,
+                                                  attr->type,
+                                                  attr->data,
+                                                  attr->data_size);
     }
+  }
   else if (issue_attrs)
+  {
+    attrs_tmp = GNUNET_strdup (issue_attrs);
+    attr_str = strtok (attrs_tmp, ",");
+    while (NULL != attr_str)
     {
-      attrs_tmp = GNUNET_strdup(issue_attrs);
-      attr_str = strtok(attrs_tmp, ",");
-      while (NULL != attr_str)
-        {
-          if (0 != strcasecmp(attr_str, attr->name))
-            {
-              attr_str = strtok(NULL, ",");
-              continue;
-            }
-          le = GNUNET_new(struct GNUNET_RECLAIM_ATTRIBUTE_ClaimListEntry);
-          le->claim = GNUNET_RECLAIM_ATTRIBUTE_claim_new(attr->name,
-                                                         attr->type,
-                                                         attr->data,
-                                                         attr->data_size);
-          le->claim->version = attr->version;
-          le->claim->id = attr->id;
-          GNUNET_CONTAINER_DLL_insert(attr_list->list_head,
-                                      attr_list->list_tail,
-                                      le);
-          break;
-        }
-      GNUNET_free(attrs_tmp);
+      if (0 != strcasecmp (attr_str, attr->name))
+      {
+        attr_str = strtok (NULL, ",");
+        continue;
+      }
+      le = GNUNET_new (struct GNUNET_RECLAIM_ATTRIBUTE_ClaimListEntry);
+      le->claim = GNUNET_RECLAIM_ATTRIBUTE_claim_new (attr->name,
+                                                      attr->type,
+                                                      attr->data,
+                                                      attr->data_size);
+      le->claim->version = attr->version;
+      le->claim->id = attr->id;
+      GNUNET_CONTAINER_DLL_insert (attr_list->list_head,
+                                   attr_list->list_tail,
+                                   le);
+      break;
     }
+    GNUNET_free (attrs_tmp);
+  }
   else if (attr_delete && (NULL == attr_to_delete))
+  {
+    label = GNUNET_STRINGS_data_to_string_alloc (&attr->id, sizeof(uint64_t));
+    if (0 == strcasecmp (attr_delete, label))
     {
-      label = GNUNET_STRINGS_data_to_string_alloc(&attr->id, sizeof(uint64_t));
-      if (0 == strcasecmp(attr_delete, label))
-        {
-          attr_to_delete = GNUNET_RECLAIM_ATTRIBUTE_claim_new(attr->name,
-                                                              attr->type,
-                                                              attr->data,
-                                                              attr->data_size);
-          attr_to_delete->id = attr->id;
-        }
-      GNUNET_free(label);
+      attr_to_delete = GNUNET_RECLAIM_ATTRIBUTE_claim_new (attr->name,
+                                                           attr->type,
+                                                           attr->data,
+                                                           attr->data_size);
+      attr_to_delete->id = attr->id;
     }
+    GNUNET_free (label);
+  }
   else if (list)
-    {
-      attr_str = GNUNET_RECLAIM_ATTRIBUTE_value_to_string(attr->type,
-                                                          attr->data,
-                                                          attr->data_size);
-      attr_type = GNUNET_RECLAIM_ATTRIBUTE_number_to_typename(attr->type);
-      id = GNUNET_STRINGS_data_to_string_alloc(&attr->id, sizeof(uint64_t));
-      fprintf(stdout,
-              "Name: %s; Value: %s (%s); Version %u; ID: %s\n",
-              attr->name,
-              attr_str,
-              attr_type,
-              attr->version,
-              id);
-      GNUNET_free(id);
-    }
-  GNUNET_RECLAIM_get_attributes_next(attr_iterator);
+  {
+    attr_str = GNUNET_RECLAIM_ATTRIBUTE_value_to_string (attr->type,
+                                                         attr->data,
+                                                         attr->data_size);
+    attr_type = GNUNET_RECLAIM_ATTRIBUTE_number_to_typename (attr->type);
+    id = GNUNET_STRINGS_data_to_string_alloc (&attr->id, sizeof(uint64_t));
+    fprintf (stdout,
+             "Name: %s; Value: %s (%s); Version %u; ID: %s\n",
+             attr->name,
+             attr_str,
+             attr_type,
+             attr->version,
+             id);
+    GNUNET_free (id);
+  }
+  GNUNET_RECLAIM_get_attributes_next (attr_iterator);
 }
 
 static void
-start_process()
+start_process ()
 {
   if (NULL == pkey)
-    {
-      fprintf(stderr, "Ego %s not found\n", ego_name);
-      cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
-      return;
-    }
+  {
+    fprintf (stderr, "Ego %s not found\n", ego_name);
+    cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
+    return;
+  }
 
   if (list_tickets)
-    {
-      ticket_iterator = GNUNET_RECLAIM_ticket_iteration_start(reclaim_handle,
-                                                              pkey,
-                                                              &ticket_iter_err,
-                                                              NULL,
-                                                              &ticket_iter,
-                                                              NULL,
-                                                              &ticket_iter_fin,
-                                                              NULL);
-      return;
-    }
+  {
+    ticket_iterator = GNUNET_RECLAIM_ticket_iteration_start (reclaim_handle,
+                                                             pkey,
+                                                             &ticket_iter_err,
+                                                             NULL,
+                                                             &ticket_iter,
+                                                             NULL,
+                                                             &ticket_iter_fin,
+                                                             NULL);
+    return;
+  }
 
   if ((NULL != rp) &&
-      GNUNET_OK !=
-      GNUNET_CRYPTO_ecdsa_public_key_from_string(rp, strlen(rp), &rp_key))
-    {
-      fprintf(stderr, "%s is not a public key!\n", rp);
-      cleanup_task = GNUNET_SCHEDULER_add_now(&do_cleanup, NULL);
-      return;
-    }
+      (GNUNET_OK !=
+       GNUNET_CRYPTO_ecdsa_public_key_from_string (rp, strlen (rp), &rp_key)) )
+  {
+    fprintf (stderr, "%s is not a public key!\n", rp);
+    cleanup_task = GNUNET_SCHEDULER_add_now (&do_cleanup, NULL);
+    return;
+  }
   if (NULL != consume_ticket)
-    GNUNET_STRINGS_string_to_data(consume_ticket,
-                                  strlen(consume_ticket),
-                                  &ticket,
-                                  sizeof(struct GNUNET_RECLAIM_Ticket));
+    GNUNET_STRINGS_string_to_data (consume_ticket,
+                                   strlen (consume_ticket),
+                                   &ticket,
+                                   sizeof(struct GNUNET_RECLAIM_Ticket));
   if (NULL != revoke_ticket)
-    GNUNET_STRINGS_string_to_data(revoke_ticket,
-                                  strlen(revoke_ticket),
-                                  &ticket,
-                                  sizeof(struct GNUNET_RECLAIM_Ticket));
+    GNUNET_STRINGS_string_to_data (revoke_ticket,
+                                   strlen (revoke_ticket),
+                                   &ticket,
+                                   sizeof(struct GNUNET_RECLAIM_Ticket));
 
-  attr_list = GNUNET_new(struct GNUNET_RECLAIM_ATTRIBUTE_ClaimList);
+  attr_list = GNUNET_new (struct GNUNET_RECLAIM_ATTRIBUTE_ClaimList);
   claim = NULL;
-  attr_iterator = GNUNET_RECLAIM_get_attributes_start(reclaim_handle,
-                                                      pkey,
-                                                      &iter_error,
-                                                      NULL,
-                                                      &iter_cb,
-                                                      NULL,
-                                                      &iter_finished,
-                                                      NULL);
+  attr_iterator = GNUNET_RECLAIM_get_attributes_start (reclaim_handle,
+                                                       pkey,
+                                                       &iter_error,
+                                                       NULL,
+                                                       &iter_cb,
+                                                       NULL,
+                                                       &iter_finished,
+                                                       NULL);
 }
 
 static int init = GNUNET_YES;
 
 static void
-ego_cb(void *cls,
-       struct GNUNET_IDENTITY_Ego *ego,
-       void **ctx,
-       const char *name)
+ego_cb (void *cls,
+        struct GNUNET_IDENTITY_Ego *ego,
+        void **ctx,
+        const char *name)
 {
   if (NULL == name)
+  {
+    if (GNUNET_YES == init)
     {
-      if (GNUNET_YES == init)
-        {
-          init = GNUNET_NO;
-          start_process();
-        }
-      return;
+      init = GNUNET_NO;
+      start_process ();
     }
-  if (0 != strcmp(name, ego_name))
     return;
-  pkey = GNUNET_IDENTITY_ego_get_private_key(ego);
+  }
+  if (0 != strcmp (name, ego_name))
+    return;
+  pkey = GNUNET_IDENTITY_ego_get_private_key (ego);
 }
 
 
 static void
-run(void *cls,
-    char *const *args,
-    const char *cfgfile,
-    const struct GNUNET_CONFIGURATION_Handle *c)
+run (void *cls,
+     char *const *args,
+     const char *cfgfile,
+     const struct GNUNET_CONFIGURATION_Handle *c)
 {
   ret = 0;
   if (NULL == ego_name)
-    {
-      ret = 1;
-      fprintf(stderr, _("Ego is required\n"));
-      return;
-    }
+  {
+    ret = 1;
+    fprintf (stderr, _ ("Ego is required\n"));
+    return;
+  }
 
   if ((NULL == attr_value) && (NULL != attr_name))
-    {
-      ret = 1;
-      fprintf(stderr, _("Attribute value missing!\n"));
-      return;
-    }
+  {
+    ret = 1;
+    fprintf (stderr, _ ("Attribute value missing!\n"));
+    return;
+  }
 
   if ((NULL == rp) && (NULL != issue_attrs))
-    {
-      ret = 1;
-      fprintf(stderr, _("Requesting party key is required!\n"));
-      return;
-    }
+  {
+    ret = 1;
+    fprintf (stderr, _ ("Requesting party key is required!\n"));
+    return;
+  }
 
-  reclaim_handle = GNUNET_RECLAIM_connect(c);
+  reclaim_handle = GNUNET_RECLAIM_connect (c);
   // Get Ego
-  identity_handle = GNUNET_IDENTITY_connect(c, &ego_cb, NULL);
+  identity_handle = GNUNET_IDENTITY_connect (c, &ego_cb, NULL);
 }
 
 
 int
-main(int argc, char *const argv[])
+main (int argc, char *const argv[])
 {
   exp_interval = GNUNET_TIME_UNIT_HOURS;
   struct GNUNET_GETOPT_CommandLineOption options[] = {
-    GNUNET_GETOPT_option_string('a',
-                                "add",
-                                "NAME",
-                                gettext_noop("Add an attribute NAME"),
-                                &attr_name),
-    GNUNET_GETOPT_option_string('d',
-                                "delete",
-                                "ID",
-                                gettext_noop("Delete the attribute with ID"),
-                                &attr_delete),
-    GNUNET_GETOPT_option_string('V',
-                                "value",
-                                "VALUE",
-                                gettext_noop("The attribute VALUE"),
-                                &attr_value),
-    GNUNET_GETOPT_option_string('e',
-                                "ego",
-                                "EGO",
-                                gettext_noop("The EGO to use"),
-                                &ego_name),
-    GNUNET_GETOPT_option_string('r',
-                                "rp",
-                                "RP",
-                                gettext_noop(
-                                  "Specify the relying party for issue"),
-                                &rp),
-    GNUNET_GETOPT_option_flag('D',
-                              "dump",
-                              gettext_noop("List attributes for EGO"),
-                              &list),
-    GNUNET_GETOPT_option_string(
+    GNUNET_GETOPT_option_string ('a',
+                                 "add",
+                                 "NAME",
+                                 gettext_noop ("Add an attribute NAME"),
+                                 &attr_name),
+    GNUNET_GETOPT_option_string ('d',
+                                 "delete",
+                                 "ID",
+                                 gettext_noop ("Delete the attribute with ID"),
+                                 &attr_delete),
+    GNUNET_GETOPT_option_string ('V',
+                                 "value",
+                                 "VALUE",
+                                 gettext_noop ("The attribute VALUE"),
+                                 &attr_value),
+    GNUNET_GETOPT_option_string ('e',
+                                 "ego",
+                                 "EGO",
+                                 gettext_noop ("The EGO to use"),
+                                 &ego_name),
+    GNUNET_GETOPT_option_string ('r',
+                                 "rp",
+                                 "RP",
+                                 gettext_noop (
+                                   "Specify the relying party for issue"),
+                                 &rp),
+    GNUNET_GETOPT_option_flag ('D',
+                               "dump",
+                               gettext_noop ("List attributes for EGO"),
+                               &list),
+    GNUNET_GETOPT_option_string (
       'i',
       "issue",
       "A1,A2,...",
-      gettext_noop(
+      gettext_noop (
         "Issue a ticket for a set of attributes separated by comma"),
       &issue_attrs),
-    GNUNET_GETOPT_option_string('C',
-                                "consume",
-                                "TICKET",
-                                gettext_noop("Consume a ticket"),
-                                &consume_ticket),
-    GNUNET_GETOPT_option_string('R',
-                                "revoke",
-                                "TICKET",
-                                gettext_noop("Revoke a ticket"),
-                                &revoke_ticket),
-    GNUNET_GETOPT_option_string('t',
-                                "type",
-                                "TYPE",
-                                gettext_noop("Type of attribute"),
-                                &type_str),
-    GNUNET_GETOPT_option_flag('T',
-                              "tickets",
-                              gettext_noop("List tickets of ego"),
-                              &list_tickets),
-    GNUNET_GETOPT_option_relative_time('E',
-                                       "expiration",
-                                       "INTERVAL",
-                                       gettext_noop(
-                                         "Expiration interval of the attribute"),
-                                       &exp_interval),
+    GNUNET_GETOPT_option_string ('C',
+                                 "consume",
+                                 "TICKET",
+                                 gettext_noop ("Consume a ticket"),
+                                 &consume_ticket),
+    GNUNET_GETOPT_option_string ('R',
+                                 "revoke",
+                                 "TICKET",
+                                 gettext_noop ("Revoke a ticket"),
+                                 &revoke_ticket),
+    GNUNET_GETOPT_option_string ('t',
+                                 "type",
+                                 "TYPE",
+                                 gettext_noop ("Type of attribute"),
+                                 &type_str),
+    GNUNET_GETOPT_option_flag ('T',
+                               "tickets",
+                               gettext_noop ("List tickets of ego"),
+                               &list_tickets),
+    GNUNET_GETOPT_option_relative_time ('E',
+                                        "expiration",
+                                        "INTERVAL",
+                                        gettext_noop (
+                                          "Expiration interval of the attribute"),
+                                        &exp_interval),
 
     GNUNET_GETOPT_OPTION_END
   };
-  if (GNUNET_OK != GNUNET_PROGRAM_run(argc,
-                                      argv,
-                                      "gnunet-reclaim",
-                                      _("re:claimID command line tool"),
-                                      options,
-                                      &run,
-                                      NULL))
+  if (GNUNET_OK != GNUNET_PROGRAM_run (argc,
+                                       argv,
+                                       "gnunet-reclaim",
+                                       _ ("re:claimID command line tool"),
+                                       options,
+                                       &run,
+                                       NULL))
     return 1;
   else
     return ret;