aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-07 14:56:07 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-07 14:56:07 +0000
commit4c5201417431a8cb700dab32e339ded3d7363156 (patch)
tree494f84d2137d15a6818208a5519bd4fcc0fcbe01 /src/core/gnunet-service-core.h
parent127cddf66adb99459a5d0ad2f7cafc5c18c27879 (diff)
downloadgnunet-4c5201417431a8cb700dab32e339ded3d7363156.tar.gz
gnunet-4c5201417431a8cb700dab32e339ded3d7363156.zip
hxing
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;