aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/gnunet-service-core.h')
-rw-r--r--src/core/gnunet-service-core.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/core/gnunet-service-core.h b/src/core/gnunet-service-core.h
index 9068e7c3d..2d5156efe 100644
--- a/src/core/gnunet-service-core.h
+++ b/src/core/gnunet-service-core.h
@@ -49,13 +49,13 @@ struct GSC_ClientActiveRequest
49 * Active requests are kept in a doubly-linked list of 49 * Active requests are kept in a doubly-linked list of
50 * the respective target peer. 50 * the respective target peer.
51 */ 51 */
52 struct ClientActiveRequest *next; 52 struct GSC_ClientActiveRequest *next;
53 53
54 /** 54 /**
55 * Active requests are kept in a doubly-linked list of 55 * Active requests are kept in a doubly-linked list of
56 * the respective target peer. 56 * the respective target peer.
57 */ 57 */
58 struct ClientActiveRequest *prev; 58 struct GSC_ClientActiveRequest *prev;
59 59
60 /** 60 /**
61 * Which peer is the message going to be for? 61 * Which peer is the message going to be for?
@@ -78,6 +78,11 @@ struct GSC_ClientActiveRequest
78 uint32_t priority; 78 uint32_t priority;
79 79
80 /** 80 /**
81 * Has this request been solicited yet?
82 */
83 int was_solicited;
84
85 /**
81 * How many bytes does the client intend to send? 86 * How many bytes does the client intend to send?
82 */ 87 */
83 uint16_t msize; 88 uint16_t msize;