aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_client_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-04-19 08:53:46 +0000
committerChristian Grothoff <christian@grothoff.org>2012-04-19 08:53:46 +0000
commitccc7218f3d2008d4e7ec5e222ba6b6451ec677ba (patch)
tree50664649cca13e5462dadea8c9bcde81c59e07ef /src/include/gnunet_client_lib.h
parent75297c57a857d0c7c1428bed00e32ed2c8b5389d (diff)
downloadgnunet-ccc7218f3d2008d4e7ec5e222ba6b6451ec677ba.tar.gz
gnunet-ccc7218f3d2008d4e7ec5e222ba6b6451ec677ba.zip
-removing 2nd argument from GNUNET_CLIENT_disconnect as it was virtually always GNUNET_NO --- and all other uses indicate design problems
Diffstat (limited to 'src/include/gnunet_client_lib.h')
-rw-r--r--src/include/gnunet_client_lib.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/gnunet_client_lib.h b/src/include/gnunet_client_lib.h
index 60fa938c8..100de326f 100644
--- a/src/include/gnunet_client_lib.h
+++ b/src/include/gnunet_client_lib.h
@@ -70,12 +70,9 @@ GNUNET_CLIENT_connect (const char *service_name,
70 * which case the message may still be lost). 70 * which case the message may still be lost).
71 * 71 *
72 * @param sock handle to the service connection 72 * @param sock handle to the service connection
73 * @param finish_pending_write should a transmission already passed to the
74 * handle be completed?
75 */ 73 */
76void 74void
77GNUNET_CLIENT_disconnect (struct GNUNET_CLIENT_Connection *sock, 75GNUNET_CLIENT_disconnect (struct GNUNET_CLIENT_Connection *sock);
78 int finish_pending_write);
79 76
80 77
81/** 78/**