From a9c802b2a3f77f2b906e22f582681cdec0790c32 Mon Sep 17 00:00:00 2001 From: james Date: Thu, 22 Dec 2005 18:09:40 +0000 Subject: --ip-win32 adaptive is now the default. --ip-win32 netsh (or --ip-win32 adaptive when in netsh mode) can now set DNS/WINS addresses on the TAP-Win32 adapter. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@857 e7ae566f-a301-0410-adde-c780ea21d3b5 --- openvpn.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'openvpn.h') diff --git a/openvpn.h b/openvpn.h index 437a02f..3ddc1a7 100644 --- a/openvpn.h +++ b/openvpn.h @@ -117,6 +117,14 @@ struct context_buffers struct buffer read_tun_buf; }; +/* + * always-persistent context variables + */ +struct context_persist +{ + int restart_sleep_seconds; +}; + /* * level 0 context contains data related to * once-per OpenVPN instantiation events @@ -461,6 +469,9 @@ struct context /* set to true after we daemonize */ bool did_we_daemonize; + /* persistent across SIGHUP */ + struct context_persist persist; + /* level 0 context contains data related to once-per OpenVPN instantiation events such as daemonization */ -- cgit