diff options
author | James Yonan <james@openvpn.net> | 2010-03-12 03:00:41 +0000 |
---|---|---|
committer | James Yonan <james@openvpn.net> | 2010-03-12 03:00:41 +0000 |
commit | fdda3135a8a95e7540740fe7a71481dc7a40d610 (patch) | |
tree | 203a0bf2a0386633889a638163fd8c53da33671b /options.c | |
parent | Trivial fix to proxy.c -- #define proxy auth type as UP_TYPE_PROXY. (diff) | |
download | openvpn-fdda3135a8a95e7540740fe7a71481dc7a40d610.tar.xz |
Added stub directive "remote-ip-hint".
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@5467 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -3632,6 +3632,11 @@ add_option (struct options *options, } } #endif + else if (streq (p[0], "remote-ip-hint") && p[1]) + { + VERIFY_PERMISSION (OPT_P_GENERAL|OPT_P_CONNECTION); + // fixme + } else if (streq (p[0], "remote") && p[1]) { struct remote_entry re; |