aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_arm_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-15 21:46:35 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-15 21:46:35 +0000
commit502af2167f7c218366666ca4944bd7cc54b5b19a (patch)
treea91fec5cc9769d260640bd91c6633cb9cf395524 /src/include/gnunet_arm_service.h
parent03af5a603b7cc53432249d5854cd412aa90dde0d (diff)
downloadgnunet-502af2167f7c218366666ca4944bd7cc54b5b19a.tar.gz
gnunet-502af2167f7c218366666ca4944bd7cc54b5b19a.zip
indentation
Diffstat (limited to 'src/include/gnunet_arm_service.h')
-rw-r--r--src/include/gnunet_arm_service.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/include/gnunet_arm_service.h b/src/include/gnunet_arm_service.h
index 317105520..e0a0b83ad 100644
--- a/src/include/gnunet_arm_service.h
+++ b/src/include/gnunet_arm_service.h
@@ -59,7 +59,7 @@ typedef void (*GNUNET_ARM_Callback) (void *cls, int success);
59 59
60/** 60/**
61 * Handle for interacting with ARM. 61 * Handle for interacting with ARM.
62 */ 62 */
63struct GNUNET_ARM_Handle; 63struct GNUNET_ARM_Handle;
64 64
65 65
@@ -73,9 +73,9 @@ struct GNUNET_ARM_Handle;
73 * @param service service that *this* process is implementing/providing, can be NULL 73 * @param service service that *this* process is implementing/providing, can be NULL
74 * @return context to use for further ARM operations, NULL on error 74 * @return context to use for further ARM operations, NULL on error
75 */ 75 */
76struct GNUNET_ARM_Handle * 76struct GNUNET_ARM_Handle *GNUNET_ARM_connect (const struct
77GNUNET_ARM_connect (const struct GNUNET_CONFIGURATION_Handle *cfg, 77 GNUNET_CONFIGURATION_Handle *cfg,
78 const char *service); 78 const char *service);
79 79
80 80
81/** 81/**
@@ -83,8 +83,7 @@ GNUNET_ARM_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
83 * 83 *
84 * @param h the handle that was being used 84 * @param h the handle that was being used
85 */ 85 */
86void 86void GNUNET_ARM_disconnect (struct GNUNET_ARM_Handle *h);
87GNUNET_ARM_disconnect (struct GNUNET_ARM_Handle *h);
88 87
89 88
90/** 89/**
@@ -107,7 +106,7 @@ GNUNET_ARM_disconnect (struct GNUNET_ARM_Handle *h);
107 */ 106 */
108void 107void
109GNUNET_ARM_start_service (struct GNUNET_ARM_Handle *h, 108GNUNET_ARM_start_service (struct GNUNET_ARM_Handle *h,
110 const char *service_name, 109 const char *service_name,
111 struct GNUNET_TIME_Relative timeout, 110 struct GNUNET_TIME_Relative timeout,
112 GNUNET_ARM_Callback cb, void *cb_cls); 111 GNUNET_ARM_Callback cb, void *cb_cls);
113 112
@@ -125,7 +124,7 @@ GNUNET_ARM_start_service (struct GNUNET_ARM_Handle *h,
125 */ 124 */
126void 125void
127GNUNET_ARM_stop_service (struct GNUNET_ARM_Handle *h, 126GNUNET_ARM_stop_service (struct GNUNET_ARM_Handle *h,
128 const char *service_name, 127 const char *service_name,
129 struct GNUNET_TIME_Relative timeout, 128 struct GNUNET_TIME_Relative timeout,
130 GNUNET_ARM_Callback cb, void *cb_cls); 129 GNUNET_ARM_Callback cb, void *cb_cls);
131 130