From 8caa1b9d750bb7467d1c3330780b05ac2bbf9883 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sun, 14 May 2000 11:39:18 +0000 Subject: [PATCH 1/1] Proxymode removed. --- src/conf.c | 1 - src/conf.h | 3 +-- src/net.c | 6 ------ 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/src/conf.c b/src/conf.c index 90ad58fc..6f949f56 100644 --- a/src/conf.c +++ b/src/conf.c @@ -59,7 +59,6 @@ static internal_config_t hazahaza[] = { { "PingTimeout", pingtimeout, TYPE_INT }, { "TapDevice", tapdevice, TYPE_NAME }, { "KeyExpire", keyexpire, TYPE_INT }, - { "ProxyMode", proxymode, TYPE_BOOL }, { NULL, 0, 0 } }; diff --git a/src/conf.h b/src/conf.h index 673573b3..0d66313b 100644 --- a/src/conf.h +++ b/src/conf.h @@ -40,8 +40,7 @@ typedef enum which_t { tapdevice, allowconnect, pingtimeout, - keyexpire, - proxymode + keyexpire } which_t; typedef struct config_t { diff --git a/src/net.c b/src/net.c index 58f3e02f..7b9133e0 100644 --- a/src/net.c +++ b/src/net.c @@ -258,14 +258,8 @@ cp */ int send_packet(ip_t to, vpn_packet_t *packet) { - config_t const *cfg; conn_list_t *cl; cp - if(!(cfg = get_config_val(proxymode))) /* In case we are in proxy mode, just send everything to our uplink. */ - cl = conn_list; - else - cl = lookup_conn(to); - if((cl = lookup_conn(to)) == NULL) { if(debug_lvl > 2) -- 2.20.1