aboutsummaryrefslogtreecommitdiff
path: root/src/arm
diff options
context:
space:
mode:
Diffstat (limited to 'src/arm')
-rw-r--r--src/arm/gnunet-arm.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/arm/gnunet-arm.c b/src/arm/gnunet-arm.c
index 6611ae5ec..cfadbc87a 100644
--- a/src/arm/gnunet-arm.c
+++ b/src/arm/gnunet-arm.c
@@ -189,6 +189,12 @@ shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
189} 189}
190 190
191 191
192/**
193 * Returns a string interpretation of 'rs'
194 *
195 * @param rs the request status from ARM
196 * @return a string interpretation of the request status
197 */
192static const char * 198static const char *
193req_string (enum GNUNET_ARM_RequestStatus rs) 199req_string (enum GNUNET_ARM_RequestStatus rs)
194{ 200{
@@ -210,6 +216,13 @@ req_string (enum GNUNET_ARM_RequestStatus rs)
210 return _("Unknown request status"); 216 return _("Unknown request status");
211} 217}
212 218
219
220/**
221 * Returns a string interpretation of the 'result'
222 *
223 * @param result the arm result
224 * @return a string interpretation
225 */
213static const char * 226static const char *
214ret_string (enum GNUNET_ARM_Result result) 227ret_string (enum GNUNET_ARM_Result result)
215{ 228{