diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-09-26 07:40:02 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-09-26 07:40:02 +0000 |
commit | 3c7f2f553be4b3ba9412c1b3f64a258c469d78f4 (patch) | |
tree | 9d58836b0f1eade372de7ce15c41d6555d55ef21 /route.h | |
parent | 6fbf66fad3367b24fd6743bcd50254902fd9c8d5 (diff) | |
download | openvpn-3c7f2f553be4b3ba9412c1b3f64a258c469d78f4.tar.gz openvpn-3c7f2f553be4b3ba9412c1b3f64a258c469d78f4.tar.xz openvpn-3c7f2f553be4b3ba9412c1b3f64a258c469d78f4.zip |
version 2.1_beta1
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@581 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'route.h')
-rw-r--r-- | route.h | 24 |
1 files changed, 17 insertions, 7 deletions
@@ -48,6 +48,13 @@ */ #define ROUTE_DELETE_FIRST 2 +struct route_bypass +{ +# define N_ROUTE_BYPASS 8 + int n_bypass; + in_addr_t bypass[N_ROUTE_BYPASS]; +}; + struct route_special_addr { in_addr_t remote_endpoint; @@ -56,6 +63,7 @@ struct route_special_addr bool net_gateway_defined; in_addr_t remote_host; bool remote_host_defined; + struct route_bypass bypass; }; struct route_option { @@ -65,11 +73,16 @@ struct route_option { const char *metric; }; +/* redirect-gateway flags */ +#define RG_ENABLE (1<<0) +#define RG_LOCAL (1<<1) +#define RG_DEF1 (1<<2) +#define RG_BYPASS_DHCP (1<<3) +#define RG_BYPASS_DNS (1<<4) + struct route_option_list { int n; - bool redirect_default_gateway; - bool redirect_local; - bool redirect_def1; + unsigned int flags; struct route_option routes[MAX_ROUTES]; }; @@ -86,11 +99,8 @@ struct route { struct route_list { bool routes_added; struct route_special_addr spec; - bool redirect_default_gateway; - bool redirect_local; - bool redirect_def1; + unsigned int flags; bool did_redirect_default_gateway; - int n; struct route routes[MAX_ROUTES]; }; |