aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_client_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-03 13:50:35 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-03 13:50:35 +0000
commit653dc47fa8ab2e2f36c4ca494fcb6510cdc9d46a (patch)
tree2f2dca0370c0713e508fe188eedae1efb8d65671 /src/include/gnunet_client_lib.h
parent4954b2047093f62c866d145ece0d2304b76a428f (diff)
downloadgnunet-653dc47fa8ab2e2f36c4ca494fcb6510cdc9d46a.tar.gz
gnunet-653dc47fa8ab2e2f36c4ca494fcb6510cdc9d46a.zip
-finishing first round of conversation phone API implementation
Diffstat (limited to 'src/include/gnunet_client_lib.h')
-rw-r--r--src/include/gnunet_client_lib.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/include/gnunet_client_lib.h b/src/include/gnunet_client_lib.h
index e4cdd26cc..37f152d97 100644
--- a/src/include/gnunet_client_lib.h
+++ b/src/include/gnunet_client_lib.h
@@ -80,8 +80,7 @@ GNUNET_CLIENT_disconnect (struct GNUNET_CLIENT_Connection *client);
80 * @param msg message received, NULL on timeout or fatal error 80 * @param msg message received, NULL on timeout or fatal error
81 */ 81 */
82typedef void (*GNUNET_CLIENT_MessageHandler) (void *cls, 82typedef void (*GNUNET_CLIENT_MessageHandler) (void *cls,
83 const struct GNUNET_MessageHeader 83 const struct GNUNET_MessageHeader *msg);
84 *msg);
85 84
86 85
87/** 86/**
@@ -129,8 +128,8 @@ GNUNET_CLIENT_notify_transmit_ready (struct GNUNET_CLIENT_Connection *client,
129 size_t size, 128 size_t size,
130 struct GNUNET_TIME_Relative timeout, 129 struct GNUNET_TIME_Relative timeout,
131 int auto_retry, 130 int auto_retry,
132 GNUNET_CONNECTION_TransmitReadyNotify 131 GNUNET_CONNECTION_TransmitReadyNotify notify,
133 notify, void *notify_cls); 132 void *notify_cls);
134 133
135 134
136/** 135/**