diff options
author | Matthias Wachs <wachs@net.in.tum.de> | 2011-09-15 09:31:18 +0000 |
---|---|---|
committer | Matthias Wachs <wachs@net.in.tum.de> | 2011-09-15 09:31:18 +0000 |
commit | c2a2296221c174ae68fb82f3373a5594391474cb (patch) | |
tree | 53a284d9e0fcb274712f3d551bcdb00c1223d062 /src/transport/plugin_transport_http.h | |
parent | d0cdb1cc4a8d030fd106475e1bbc520c7486fc24 (diff) |
more functionality
Diffstat (limited to 'src/transport/plugin_transport_http.h')
-rw-r--r-- | src/transport/plugin_transport_http.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/transport/plugin_transport_http.h b/src/transport/plugin_transport_http.h index 84af33a59..3cba2ace0 100644 --- a/src/transport/plugin_transport_http.h +++ b/src/transport/plugin_transport_http.h @@ -114,13 +114,21 @@ struct Plugin int max_connections; + + /* Plugin values */ + + + int cur_connections; + /* * Server handles */ struct MHD_Daemon *server_v4; + GNUNET_SCHEDULER_TaskIdentifier server_v4_task; struct MHD_Daemon *server_v6; + GNUNET_SCHEDULER_TaskIdentifier server_v6_task; char *crypto_init; char *key; @@ -135,6 +143,8 @@ struct Plugin */ CURLM *client_mh; + GNUNET_SCHEDULER_TaskIdentifier client_perform_task; + }; /** |