commit cd6d3eb43c67e99bd21f2c7a5735422d135a5e5e
parent 919ae3f285a0142a00982417d371bfcd7ddf3438
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 4 Oct 2013 16:22:11 +0000
-indentation improvements
Diffstat:
2 files changed, 9 insertions(+), 17 deletions(-)
diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h
@@ -1028,8 +1028,7 @@ GNUNET_CRYPTO_ecc_sign (const struct GNUNET_CRYPTO_EccPrivateKey *priv,
*/
int
GNUNET_CRYPTO_ecc_verify (uint32_t purpose,
- const struct GNUNET_CRYPTO_EccSignaturePurpose
- *validate,
+ const struct GNUNET_CRYPTO_EccSignaturePurpose *validate,
const struct GNUNET_CRYPTO_EccSignature *sig,
const struct GNUNET_CRYPTO_EccPublicSignKey *pub);
diff --git a/src/include/gnunet_server_lib.h b/src/include/gnunet_server_lib.h
@@ -667,9 +667,7 @@ GNUNET_SERVER_notification_context_create (struct GNUNET_SERVER_Handle *server,
* @param nc context to destroy.
*/
void
-GNUNET_SERVER_notification_context_destroy (struct
- GNUNET_SERVER_NotificationContext
- *nc);
+GNUNET_SERVER_notification_context_destroy (struct GNUNET_SERVER_NotificationContext *nc);
/**
@@ -679,8 +677,7 @@ GNUNET_SERVER_notification_context_destroy (struct
* @param client client to add
*/
void
-GNUNET_SERVER_notification_context_add (struct GNUNET_SERVER_NotificationContext
- *nc,
+GNUNET_SERVER_notification_context_add (struct GNUNET_SERVER_NotificationContext *nc,
struct GNUNET_SERVER_Client *client);
@@ -694,12 +691,10 @@ GNUNET_SERVER_notification_context_add (struct GNUNET_SERVER_NotificationContext
* @param can_drop can this message be dropped due to queue length limitations
*/
void
-GNUNET_SERVER_notification_context_unicast (struct
- GNUNET_SERVER_NotificationContext
- *nc,
+GNUNET_SERVER_notification_context_unicast (struct GNUNET_SERVER_NotificationContext *nc,
struct GNUNET_SERVER_Client *client,
- const struct GNUNET_MessageHeader
- *msg, int can_drop);
+ const struct GNUNET_MessageHeader *msg,
+ int can_drop);
/**
@@ -710,11 +705,9 @@ GNUNET_SERVER_notification_context_unicast (struct
* @param can_drop can this message be dropped due to queue length limitations
*/
void
-GNUNET_SERVER_notification_context_broadcast (struct
- GNUNET_SERVER_NotificationContext
- *nc,
- const struct GNUNET_MessageHeader
- *msg, int can_drop);
+GNUNET_SERVER_notification_context_broadcast (struct GNUNET_SERVER_NotificationContext *nc,
+ const struct GNUNET_MessageHeader *msg,
+ int can_drop);
/**