diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-02-16 18:12:24 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-02-16 18:12:24 +0000 |
commit | 6add6b2fe78c549d174729869e26cee917e31d5f (patch) | |
tree | 7b0786b12c40853bd9742d61e07417ade430f3d2 /error.h | |
parent | Added "bytecount" command to management interface. (diff) | |
download | openvpn-6add6b2fe78c549d174729869e26cee917e31d5f.tar.xz |
Added --port-share option for allowing OpenVPN and HTTPS
server to share the same port number.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@893 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | error.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -196,7 +196,7 @@ FILE *msg_fp(void); void assert_failed (const char *filename, int line); #ifdef ENABLE_DEBUG -void crash (void); // force a segfault (debugging only) +void crash (void); /* force a segfault (debugging only) */ #endif /* Inline functions */ @@ -207,6 +207,9 @@ check_debug_level (unsigned int level) return (level & M_DEBUG_LEVEL) <= x_debug_level; } +/* Call if we forked */ +void msg_forked (void); + /* syslog output */ void open_syslog (const char *pgmname, bool stdio_to_null); |