summaryrefslogtreecommitdiffstats
path: root/multi.c
diff options
context:
space:
mode:
Diffstat (limited to 'multi.c')
-rw-r--r--multi.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/multi.c b/multi.c
index 3a2fe9a..1a2f86a 100644
--- a/multi.c
+++ b/multi.c
@@ -2789,24 +2789,10 @@ tunnel_server (struct context *top)
{
ASSERT (top->options.mode == MODE_SERVER);
-#ifdef USE_PF_INET6
if (proto_is_dgram(top->options.ce.proto))
tunnel_server_udp(top);
else
tunnel_server_tcp(top);
-#else
- switch (top->options.ce.proto)
- {
- case PROTO_UDPv4:
- tunnel_server_udp (top);
- break;
- case PROTO_TCPv4_SERVER:
- tunnel_server_tcp (top);
- break;
- default:
- ASSERT (0);
- }
-#endif
}
#else