aboutsummaryrefslogtreecommitdiff
path: root/src/arm/arm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arm/arm.h')
-rw-r--r--src/arm/arm.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/arm/arm.h b/src/arm/arm.h
index 4b9da6fab..21884107c 100644
--- a/src/arm/arm.h
+++ b/src/arm/arm.h
@@ -51,6 +51,27 @@ struct GNUNET_ARM_ResultMessage
51 */ 51 */
52 uint32_t status; 52 uint32_t status;
53}; 53};
54
55/**
56 * Reply from ARM to client for the
57 * GNUNET_MESSAGE_TYPE_ARM_LIST request followed by count
58 * '\0' terminated strings. header->size contains the
59 * total size (including all strings).
60 */
61struct GNUNET_ARM_ListResultMessage
62{
63 /**
64 * Reply to client is of type GNUNET_MESSAGE_TYPE_ARM_LIST_RESULT
65 */
66 struct GNUNET_MessageHeader header;
67
68 /**
69 * Number of '\0' terminated strings that follow
70 * this message.
71 */
72 uint16_t count;
73};
74
54GNUNET_NETWORK_STRUCT_END 75GNUNET_NETWORK_STRUCT_END
55 76
56#endif 77#endif