diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-06-29 18:57:21 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-06-29 18:57:21 +0000 |
commit | e482a63238d3085e96fa698b1c45cf54357038b4 (patch) | |
tree | 687dfbd60abb4ef6c5a2017af0d21394730a3699 /manage.h | |
parent | Minor syshead.h change for NetBSD to allow (diff) | |
download | openvpn-e482a63238d3085e96fa698b1c45cf54357038b4.tar.xz |
Added two new management states:
OPENVPN_STATE_RESOLVE -- DNS lookup */
OPENVPN_STATE_TCP_CONNECT -- Connecting to TCP server
Echo management state change to log.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1068 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'manage.h')
-rw-r--r-- | manage.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -117,6 +117,8 @@ struct log_entry #define LOG_PRINT_REMOTE_IP (1<<10) +#define LOG_ECHO_TO_LOG (1<<11) + const char *log_entry_print (const struct log_entry *e, unsigned int flags, struct gc_arena *gc); struct log_history @@ -331,6 +333,8 @@ management_query_user_pass_enabled (const struct management *man) #define OPENVPN_STATE_WAIT 7 /* Waiting for initial response from server */ #define OPENVPN_STATE_AUTH 8 /* Authenticating with server */ #define OPENVPN_STATE_GET_CONFIG 9 /* Downloading configuration from server */ +#define OPENVPN_STATE_RESOLVE 10 /* DNS lookup */ +#define OPENVPN_STATE_TCP_CONNECT 11 /* Connecting to TCP server */ #define OPENVPN_STATE_CLIENT_BASE 7 /* Base index of client-only states */ |