diff options
author | Matthias Wachs <wachs@net.in.tum.de> | 2012-05-25 14:04:41 +0000 |
---|---|---|
committer | Matthias Wachs <wachs@net.in.tum.de> | 2012-05-25 14:04:41 +0000 |
commit | 70b173c768c3a43fc392507562df0ede641edbbe (patch) | |
tree | 8561d190e02e09e226219f0421859341bde24e36 /src/transport/plugin_transport_http.h | |
parent | d87b9a8065669e71342b8e6823b596b1db02f4d6 (diff) |
- timeout for http/s
Diffstat (limited to 'src/transport/plugin_transport_http.h')
-rw-r--r-- | src/transport/plugin_transport_http.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/transport/plugin_transport_http.h b/src/transport/plugin_transport_http.h index 89fb86dd9..b1a7fcaf3 100644 --- a/src/transport/plugin_transport_http.h +++ b/src/transport/plugin_transport_http.h @@ -400,6 +400,11 @@ struct Session GNUNET_SCHEDULER_TaskIdentifier recv_wakeup_task; /** + * Session timeout task + */ + GNUNET_SCHEDULER_TaskIdentifier timeout_task; + + /** * Is client send handle paused since there are no data to send? * GNUNET_YES/NO */ @@ -469,11 +474,6 @@ exist_session (struct Plugin *plugin, struct Session *s); void delete_session (struct Session *s); -struct Session * -create_session (struct Plugin *plugin, const struct GNUNET_PeerIdentity *target, - const void *addr, size_t addrlen, - GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls); - int exist_session (struct Plugin *plugin, struct Session *s); |