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 /manage.h | |
parent | This is the start of the BETA21 branch. (diff) | |
download | openvpn-3c7f2f553be4b3ba9412c1b3f64a258c469d78f4.tar.xz |
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 'manage.h')
-rw-r--r-- | manage.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -89,6 +89,7 @@ void output_list_advance (struct output_list *ol, int n); union log_entry_union { unsigned int msg_flags; int state; + int intval; }; struct log_entry @@ -111,6 +112,8 @@ struct log_entry #define LOG_PRINT_CRLF (1<<7) #define LOG_FATAL_NOTIFY (1<<8) +#define LOG_PRINT_INTVAL (1<<9) + const char *log_entry_print (const struct log_entry *e, unsigned int flags, struct gc_arena *gc); struct log_history @@ -327,7 +330,7 @@ void management_set_state (struct management *man, * The management object keeps track of OpenVPN --echo * parameters. */ -void management_echo (struct management *man, const char *string); +void management_echo (struct management *man, const char *string, const bool pull); /* * OpenVPN calls here to indicate a password failure |