From 0e5752c4c3a0a3a76c5d434be10fab4613835bda Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Wed, 18 Dec 2013 11:31:29 +0000 Subject: [PATCH] new timeout function --- src/dv/plugin_transport_dv.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/dv/plugin_transport_dv.c b/src/dv/plugin_transport_dv.c index db445f1ab..142bfaa3d 100644 --- a/src/dv/plugin_transport_dv.c +++ b/src/dv/plugin_transport_dv.c @@ -742,7 +742,13 @@ dv_plugin_string_to_address (void *cls, return GNUNET_SYSERR; } +static void +dv_plugin_update_session_timeout (void *cls, + const struct GNUNET_PeerIdentity *peer, + struct Session *session) +{ +} /** * Function to obtain the network type for a session @@ -821,6 +827,7 @@ libgnunet_plugin_transport_dv_init (void *cls) api->query_keepalive_factor = &dv_plugin_query_keepalive_factor; api->get_session = &dv_get_session; api->get_network = &dv_get_network; + api->update_session_timeout = &dv_plugin_update_session_timeout; return api; } -- 2.25.1