aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_template.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/plugin_transport_template.c')
-rw-r--r--src/transport/plugin_transport_template.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/transport/plugin_transport_template.c b/src/transport/plugin_transport_template.c
index 679d83daa..be2dfb1c8 100644
--- a/src/transport/plugin_transport_template.c
+++ b/src/transport/plugin_transport_template.c
@@ -284,12 +284,12 @@ template_plugin_query_keepalive_factor (void *cls)
284 * @param session the session 284 * @param session the session
285 * @return the network type in HBO or #GNUNET_SYSERR 285 * @return the network type in HBO or #GNUNET_SYSERR
286 */ 286 */
287static enum GNUNET_ATS_Network_Type 287static enum GNUNET_NetworkType
288template_plugin_get_network (void *cls, 288template_plugin_get_network (void *cls,
289 struct GNUNET_ATS_Session *session) 289 struct GNUNET_ATS_Session *session)
290{ 290{
291 GNUNET_assert (NULL != session); 291 GNUNET_assert (NULL != session);
292 return GNUNET_ATS_NET_UNSPECIFIED; /* Change to correct network type */ 292 return GNUNET_NT_UNSPECIFIED; /* Change to correct network type */
293} 293}
294 294
295 295
@@ -300,11 +300,11 @@ template_plugin_get_network (void *cls,
300 * @param address the address 300 * @param address the address
301 * @return the network type 301 * @return the network type
302 */ 302 */
303static enum GNUNET_ATS_Network_Type 303static enum GNUNET_NetworkType
304template_plugin_get_network_for_address (void *cls, 304template_plugin_get_network_for_address (void *cls,
305 const struct GNUNET_HELLO_Address *address) 305 const struct GNUNET_HELLO_Address *address)
306{ 306{
307 return GNUNET_ATS_NET_WAN; /* FOR NOW */ 307 return GNUNET_NT_WAN; /* FOR NOW */
308} 308}
309 309
310 310