aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/plugin_transport_unix.c')
-rw-r--r--src/transport/plugin_transport_unix.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/transport/plugin_transport_unix.c b/src/transport/plugin_transport_unix.c
index 906cf9997..67c176633 100644
--- a/src/transport/plugin_transport_unix.c
+++ b/src/transport/plugin_transport_unix.c
@@ -906,6 +906,13 @@ unix_plugin_get_session (void *cls,
906 return s; 906 return s;
907} 907}
908 908
909static void
910unix_plugin_update_session_timeout (void *cls,
911 const struct GNUNET_PeerIdentity *peer,
912 struct Session *session)
913{
914
915}
909 916
910/** 917/**
911 * Function that can be used by the transport service to transmit 918 * Function that can be used by the transport service to transmit
@@ -1635,6 +1642,7 @@ libgnunet_plugin_transport_unix_init (void *cls)
1635 api->check_address = &unix_check_address; 1642 api->check_address = &unix_check_address;
1636 api->string_to_address = &unix_string_to_address; 1643 api->string_to_address = &unix_string_to_address;
1637 api->get_network = &unix_get_network; 1644 api->get_network = &unix_get_network;
1645 api->update_session_timeout = &unix_plugin_update_session_timeout;
1638 sockets_created = unix_transport_server_start (plugin); 1646 sockets_created = unix_transport_server_start (plugin);
1639 if (0 == sockets_created) 1647 if (0 == sockets_created)
1640 LOG (GNUNET_ERROR_TYPE_WARNING, 1648 LOG (GNUNET_ERROR_TYPE_WARNING,