diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-12-05 07:07:51 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-12-05 07:07:51 +0100 |
commit | 137cc5c10327306f0dc15f063e069d2cbc497519 (patch) | |
tree | 57951d2ac173a6738315fb422a6cefd4a2a1a9f4 /openvpn/src/openvpn/options.h | |
parent | ac1934d9e06d72fbe5bdacd5c0c1a89a377e508d (diff) |
Add pre resolve patch
Diffstat (limited to 'openvpn/src/openvpn/options.h')
-rw-r--r-- | openvpn/src/openvpn/options.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/openvpn/src/openvpn/options.h b/openvpn/src/openvpn/options.h index dda9658a..ddeb8b38 100644 --- a/openvpn/src/openvpn/options.h +++ b/openvpn/src/openvpn/options.h @@ -90,9 +90,11 @@ struct connection_entry sa_family_t af; const char* local_port; bool local_port_defined; - const char* remote_port; + const char *remote_port; const char *local; const char *remote; + struct addrinfo *preresolved_remote; + struct addrinfo *preresolved_local; bool remote_float; bool bind_defined; bool bind_ipv6_only; @@ -278,6 +280,8 @@ struct options #endif int resolve_retry_seconds; /* If hostname resolve fails, retry for n seconds */ + bool resolve_in_advance; + const char *ip_remote_hint; struct tuntap_options tuntap_options; |