From 51afc8b8865fe09f76b81ae341e693a5b16199f2 Mon Sep 17 00:00:00 2001 From: JuanJo Ciarlante Date: Tue, 15 Sep 2009 16:48:46 +0200 Subject: * support --disable-ipv6 build properly: - tests now are pass (and fail) properly for ipv6/4 builds * more GNU indenting --- multi.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'multi.c') diff --git a/multi.c b/multi.c index 0196be9..df73cb9 100644 --- a/multi.c +++ b/multi.c @@ -2681,16 +2681,17 @@ tunnel_server (struct context *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); - } + 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 } -- cgit