aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-04 16:22:11 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-04 16:22:11 +0000
commitcd6d3eb43c67e99bd21f2c7a5735422d135a5e5e (patch)
tree1ddc9f0e471169b62d905706efb244aeb3762fe9 /src/include
parent919ae3f285a0142a00982417d371bfcd7ddf3438 (diff)
downloadgnunet-cd6d3eb43c67e99bd21f2c7a5735422d135a5e5e.tar.gz
gnunet-cd6d3eb43c67e99bd21f2c7a5735422d135a5e5e.zip
-indentation improvements
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_crypto_lib.h3
-rw-r--r--src/include/gnunet_server_lib.h23
2 files changed, 9 insertions, 17 deletions
diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h
index 7c30482c2..43bcc3da4 100644
--- 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,
1028 */ 1028 */
1029int 1029int
1030GNUNET_CRYPTO_ecc_verify (uint32_t purpose, 1030GNUNET_CRYPTO_ecc_verify (uint32_t purpose,
1031 const struct GNUNET_CRYPTO_EccSignaturePurpose 1031 const struct GNUNET_CRYPTO_EccSignaturePurpose *validate,
1032 *validate,
1033 const struct GNUNET_CRYPTO_EccSignature *sig, 1032 const struct GNUNET_CRYPTO_EccSignature *sig,
1034 const struct GNUNET_CRYPTO_EccPublicSignKey *pub); 1033 const struct GNUNET_CRYPTO_EccPublicSignKey *pub);
1035 1034
diff --git a/src/include/gnunet_server_lib.h b/src/include/gnunet_server_lib.h
index 31a9e4a15..0195a2898 100644
--- 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,
667 * @param nc context to destroy. 667 * @param nc context to destroy.
668 */ 668 */
669void 669void
670GNUNET_SERVER_notification_context_destroy (struct 670GNUNET_SERVER_notification_context_destroy (struct GNUNET_SERVER_NotificationContext *nc);
671 GNUNET_SERVER_NotificationContext
672 *nc);
673 671
674 672
675/** 673/**
@@ -679,8 +677,7 @@ GNUNET_SERVER_notification_context_destroy (struct
679 * @param client client to add 677 * @param client client to add
680 */ 678 */
681void 679void
682GNUNET_SERVER_notification_context_add (struct GNUNET_SERVER_NotificationContext 680GNUNET_SERVER_notification_context_add (struct GNUNET_SERVER_NotificationContext *nc,
683 *nc,
684 struct GNUNET_SERVER_Client *client); 681 struct GNUNET_SERVER_Client *client);
685 682
686 683
@@ -694,12 +691,10 @@ GNUNET_SERVER_notification_context_add (struct GNUNET_SERVER_NotificationContext
694 * @param can_drop can this message be dropped due to queue length limitations 691 * @param can_drop can this message be dropped due to queue length limitations
695 */ 692 */
696void 693void
697GNUNET_SERVER_notification_context_unicast (struct 694GNUNET_SERVER_notification_context_unicast (struct GNUNET_SERVER_NotificationContext *nc,
698 GNUNET_SERVER_NotificationContext
699 *nc,
700 struct GNUNET_SERVER_Client *client, 695 struct GNUNET_SERVER_Client *client,
701 const struct GNUNET_MessageHeader 696 const struct GNUNET_MessageHeader *msg,
702 *msg, int can_drop); 697 int can_drop);
703 698
704 699
705/** 700/**
@@ -710,11 +705,9 @@ GNUNET_SERVER_notification_context_unicast (struct
710 * @param can_drop can this message be dropped due to queue length limitations 705 * @param can_drop can this message be dropped due to queue length limitations
711 */ 706 */
712void 707void
713GNUNET_SERVER_notification_context_broadcast (struct 708GNUNET_SERVER_notification_context_broadcast (struct GNUNET_SERVER_NotificationContext *nc,
714 GNUNET_SERVER_NotificationContext 709 const struct GNUNET_MessageHeader *msg,
715 *nc, 710 int can_drop);
716 const struct GNUNET_MessageHeader
717 *msg, int can_drop);
718 711
719 712
720/** 713/**