aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-05-25 14:04:41 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-05-25 14:04:41 +0000
commit70b173c768c3a43fc392507562df0ede641edbbe (patch)
tree8561d190e02e09e226219f0421859341bde24e36 /src/transport/plugin_transport_http.h
parentd87b9a8065669e71342b8e6823b596b1db02f4d6 (diff)
downloadgnunet-70b173c768c3a43fc392507562df0ede641edbbe.tar.gz
gnunet-70b173c768c3a43fc392507562df0ede641edbbe.zip
- timeout for http/s
Diffstat (limited to 'src/transport/plugin_transport_http.h')
-rw-r--r--src/transport/plugin_transport_http.h10
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
400 GNUNET_SCHEDULER_TaskIdentifier recv_wakeup_task; 400 GNUNET_SCHEDULER_TaskIdentifier recv_wakeup_task;
401 401
402 /** 402 /**
403 * Session timeout task
404 */
405 GNUNET_SCHEDULER_TaskIdentifier timeout_task;
406
407 /**
403 * Is client send handle paused since there are no data to send? 408 * Is client send handle paused since there are no data to send?
404 * GNUNET_YES/NO 409 * GNUNET_YES/NO
405 */ 410 */
@@ -469,11 +474,6 @@ exist_session (struct Plugin *plugin, struct Session *s);
469void 474void
470delete_session (struct Session *s); 475delete_session (struct Session *s);
471 476
472struct Session *
473create_session (struct Plugin *plugin, const struct GNUNET_PeerIdentity *target,
474 const void *addr, size_t addrlen,
475 GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls);
476
477int 477int
478exist_session (struct Plugin *plugin, struct Session *s); 478exist_session (struct Plugin *plugin, struct Session *s);
479 479