From 5f31881ec189f02297b961c990c471568f25dbde Mon Sep 17 00:00:00 2001 From: james Date: Mon, 13 Nov 2006 09:44:10 +0000 Subject: New try at AUTO_USERID. Implemented AUTO_USERID using MD5(MAC address(primary network adapter)). Currently implemented for Linux and Windows. Basically if ENABLE_AUTO_USERID is defined, the --auth-user-pass option will not prompt for username/password, but will rather generate a unique username and blank password. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1459 e7ae566f-a301-0410-adde-c780ea21d3b5 --- syshead.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'syshead.h') diff --git a/syshead.h b/syshead.h index f67b4c0..2a29ee0 100644 --- a/syshead.h +++ b/syshead.h @@ -515,4 +515,13 @@ socket_defined (const socket_descriptor_t sd) #define CONNECT_NONBLOCK #endif +/* + * Do we have the capability to support the AUTO_USERID feature? + */ +#if defined(ENABLE_AUTO_USERID) +#define AUTO_USERID 1 +#else +#define AUTO_USERID 0 +#endif + #endif -- cgit