aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2011-09-16 14:24:29 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2011-09-16 14:24:29 +0000
commitacb0b0077234212372463cc24366ac79e4bcceb6 (patch)
treed00a00cdf70a4d47b225090b10bd18fe24d6e908 /src/transport/plugin_transport_http.h
parentabcb5dfce1f7b5ac066de37e1ec8d32463c04c9a (diff)
downloadgnunet-acb0b0077234212372463cc24366ac79e4bcceb6.tar.gz
gnunet-acb0b0077234212372463cc24366ac79e4bcceb6.zip
client sending & receiving
Diffstat (limited to 'src/transport/plugin_transport_http.h')
-rw-r--r--src/transport/plugin_transport_http.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/transport/plugin_transport_http.h b/src/transport/plugin_transport_http.h
index 11b369d40..b7b89e6e6 100644
--- a/src/transport/plugin_transport_http.h
+++ b/src/transport/plugin_transport_http.h
@@ -82,6 +82,7 @@ struct Plugin
82 */ 82 */
83 struct GNUNET_NAT_Handle *nat; 83 struct GNUNET_NAT_Handle *nat;
84 84
85
85 /** 86 /**
86 * ipv4 DLL head 87 * ipv4 DLL head
87 */ 88 */
@@ -124,7 +125,6 @@ struct Plugin
124 125
125 int cur_connections; 126 int cur_connections;
126 uint32_t last_tag; 127 uint32_t last_tag;
127
128 /* 128 /*
129 * Server handles 129 * Server handles
130 */ 130 */
@@ -180,9 +180,9 @@ struct Session
180 struct Plugin *plugin; 180 struct Plugin *plugin;
181 181
182 /** 182 /**
183 * The client (used to identify this connection) 183 * message stream tokenizer for incoming data
184 */ 184 */
185 /* void *client; */ 185 struct GNUNET_SERVER_MessageStreamTokenizer *msg_tk;
186 186
187 /** 187 /**
188 * Continuation function to call once the transmission buffer 188 * Continuation function to call once the transmission buffer
@@ -232,7 +232,8 @@ struct Session
232 232
233 void *server_recv; 233 void *server_recv;
234 void *server_send; 234 void *server_send;
235 235 struct GNUNET_TIME_Absolute delay;
236 GNUNET_SCHEDULER_TaskIdentifier reset_task;
236 uint32_t tag; 237 uint32_t tag;
237 238
238}; 239};