diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-12-14 12:58:27 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-12-14 12:58:27 +0100 |
commit | 76a0da0622b9bf04756f5ad39bc31759809e76ff (patch) | |
tree | 0aa1574634fd62578248f548dc51f3f08f7460c1 /openvpn/src/openvpn/manage.h | |
parent | 1c83b296a1d31da96531f74fc2010346566aaf57 (diff) |
Update openvpn to Dual Stack version
Diffstat (limited to 'openvpn/src/openvpn/manage.h')
-rw-r--r-- | openvpn/src/openvpn/manage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openvpn/src/openvpn/manage.h b/openvpn/src/openvpn/manage.h index eec24a2e..d2790dd4 100644 --- a/openvpn/src/openvpn/manage.h +++ b/openvpn/src/openvpn/manage.h @@ -212,7 +212,7 @@ struct man_persist { struct man_settings { bool defined; unsigned int flags; /* MF_x flags */ - struct openvpn_sockaddr local; + struct addrinfo* local; #if UNIX_SOCK_SUPPORT struct sockaddr_un local_unix; #endif @@ -341,7 +341,7 @@ struct management *management_init (void); bool management_open (struct management *man, const char *addr, - const int port, + const char *port, const char *pass_file, const char *client_user, const char *client_group, |