From: Guus Sliepen Date: Tue, 16 May 2000 13:09:15 +0000 (+0000) Subject: Stub for VpnMask config directive. X-Git-Tag: release-1.0pre2~46 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=85963f4c857abc2d9a4c5a3245cc11257140b9a6;ds=sidebyside Stub for VpnMask config directive. --- diff --git a/src/conf.c b/src/conf.c index a9c136e1..4431ccf6 100644 --- a/src/conf.c +++ b/src/conf.c @@ -59,6 +59,7 @@ static internal_config_t hazahaza[] = { { "PingTimeout", pingtimeout, TYPE_INT }, { "TapDevice", tapdevice, TYPE_NAME }, { "KeyExpire", keyexpire, TYPE_INT }, + { "VpnMask", vpnmask, TYPE_IP }, { NULL, 0, 0 } }; diff --git a/src/conf.h b/src/conf.h index de74c9f8..36a7bb8b 100644 --- a/src/conf.h +++ b/src/conf.h @@ -40,7 +40,8 @@ typedef enum which_t { tapdevice, allowconnect, pingtimeout, - keyexpire + keyexpire, + vpnmask } which_t; typedef struct config_t {