------------------------------------------------------------------------ r3318 | james | 2008-09-08 06:00:11 +0200 (Mon, 08 Sep 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/version.m4 Version 2.1_rc9b ------------------------------------------------------------------------ r3316 | james | 2008-09-08 05:52:52 +0200 (Mon, 08 Sep 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/debug/valgrind-suppress M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/ssl.c Fixed bug in intra-session TLS key rollover that was introduced with deferred authentication features in 2.1_rc8. ------------------------------------------------------------------------ r3312 | james | 2008-09-06 12:43:31 +0200 (Sat, 06 Sep 2008) | 8 lines Changed paths: M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h Modified ip_or_dns_addr_safe, which validates pulled DNS names, to more closely conform to RFC 3696: * DNS name length must not exceed 255 characters * DNS name characters must be limited to alphanumeric, dash ('-'), and dot ('.') ------------------------------------------------------------------------ r3311 | james | 2008-09-06 11:42:17 +0200 (Sat, 06 Sep 2008) | 20 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/ssl.c 2.1_rc8 and earlier did implicit shell expansion on script arguments since all scripts were called by system(). The security hardening changes made to 2.1_rc9 no longer use system(), but rather use the safer execve or CreateProcess system calls. The security hardening also introduced a backward incompatibility with 2.1_rc8 and earlier in that script parameters were no longer shell-expanded, so for example: client-connect "docc CLIENT-CONNECT" would fail to work because execve would try to execute a script called "docc CLIENT-CONNECT" instead of "docc" with "CLIENT-CONNECT" as the first argument. This patch fixes the issue, bringing the script argument semantics back to pre 2.1_rc9 behavior in order to preserve backward compatibility while still using execve or CreateProcess to execute the script/executable. ------------------------------------------------------------------------ r3307 | james | 2008-09-04 22:35:09 +0200 (Thu, 04 Sep 2008) | 7 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h Added --allow-pull-fqdn option which allows client to pull DNS names from server (rather than only IP address) for --ifconfig, --route, and --route-gateway. OpenVPN versions 2.1_rc7 and earlier allowed DNS names for these options to be pulled and translated to IP addresses by default. Now --allow-pull-fqdn will be explicitly required on the client to enable DNS-name-to-IP-address translation of pulled options. ------------------------------------------------------------------------ r3222 | james | 2008-08-11 15:12:34 +0200 (Mon, 11 Aug 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/ntlm.c Fixed minor compile issue in ntlm.c (mid-block declaration). ------------------------------------------------------------------------ r3221 | james | 2008-08-11 05:37:40 +0200 (Mon, 11 Aug 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/lzo.c LZO compression buffer overflow errors will now invalidate the packet rather than trigger a fatal assertion. ------------------------------------------------------------------------ r3220 | james | 2008-08-11 00:37:18 +0200 (Mon, 11 Aug 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/crypto.h M /branches/BETA21/openvpn/ssl.c Workaround bug in OpenSSL 0.9.6b ASN1_STRING_to_UTF8, which the new implementation of extract_x509_field_ssl depends on. ------------------------------------------------------------------------ r3219 | james | 2008-08-10 21:29:00 +0200 (Sun, 10 Aug 2008) | 7 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/ntlm.c M /branches/BETA21/openvpn/options.c Fixed build issue with ./configure --disable-socks --disable-http. Fixed separate compile errors in options.c and ntlm.c that occur on strict C compilers (such as old versions of gcc) that require that C variable declarations occur at the start of a {} block, not in the middle. ------------------------------------------------------------------------ r3218 | james | 2008-08-10 21:05:02 +0200 (Sun, 10 Aug 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog Tagged security fix in 2.1-rc9 as CVE-2008-3459. ------------------------------------------------------------------------ r3217 | james | 2008-08-10 20:49:28 +0200 (Sun, 10 Aug 2008) | 4 lines Changed paths: A /branches/BETA21/openvpn/t_cltsrv-down.sh M /branches/BETA21/openvpn/t_cltsrv.sh Updated openvpn/t_cltsrv.sh (used by "make check") to conform to new --script-security rules. Also adds retrying if the addresses are in use (Matthias Andree). ------------------------------------------------------------------------ r3183 | james | 2008-08-05 22:34:43 +0200 (Tue, 05 Aug 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/cryptoapi.c M /branches/BETA21/openvpn/syshead.h Reverted r3181, accomplish the same thing via a special case for Windows stdcall functions in configure.ac (Alon Bar-Lev). Minor fix to cryptoapi.c to not compile itself unless USE_CRYPTO and USE_SSL flags are enabled (Alon Bar-Lev). ------------------------------------------------------------------------ r3181 | james | 2008-08-05 09:52:06 +0200 (Tue, 05 Aug 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/syshead.h Workaround for MinGW autoconf issue where HAVE_SETSOCKOPT, HAVE_GETSOCKOPT, and HAVE_POLL are undefined even though the underlying functions are present. ------------------------------------------------------------------------ r3179 | james | 2008-08-05 06:44:31 +0200 (Tue, 05 Aug 2008) | 19 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h Added additional warnings to flag common gotchas: * Warn when ethernet bridging that the IP address of the bridge adapter is probably not the same address that the LAN adapter was set to previously. * When running as a server, warn if the LAN network address is the all-popular 192.168.[0|1].x, since this condition commonly leads to subnet conflicts down the road. * Primarily on the client, check for subnet conflicts between the local LAN and the VPN subnet. Added a 'netmask' parameter to get_default_gateway, to return the netmask of the adapter containing the default gateway. Only implemented on Windows so far. Other platforms will return 255.255.255.0. Currently the netmask information is only used to warn about subnet conflicts. ------------------------------------------------------------------------ r3177 | james | 2008-08-04 21:01:11 +0200 (Mon, 04 Aug 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/route.c Fixed minor issue with --redirect-gateway bypass-dhcp or bypass-dns on Windows. If the bypass IP address is 0.0.0.0 or 255.255.255.255, ignore it. ------------------------------------------------------------------------ r3164 | james | 2008-08-02 10:02:53 +0200 (Sat, 02 Aug 2008) | 15 lines Changed paths: M /branches/BETA21/openvpn/Makefile.am A /branches/BETA21/openvpn/dhcp.c A /branches/BETA21/openvpn/dhcp.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/forward.h M /branches/BETA21/openvpn/helper.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h M /branches/BETA21/openvpn/sample-config-files/client.conf M /branches/BETA21/openvpn/sample-config-files/server.conf M /branches/BETA21/openvpn/version.m4 Added "--server-bridge" (without parameters) to enable DHCP proxy mode: Configure server mode for ethernet bridging using a DHCP-proxy, where clients talk to the OpenVPN server-side DHCP server to receive their IP address allocation and DNS server addresses. Added "--route-gateway dhcp", to enable the extraction of the gateway address from a DHCP negotiation with the OpenVPN server-side LAN. Modified client.conf and server.conf to reflect new option modes. Incremented version to 2.1_rc9a. ------------------------------------------------------------------------ r3155 | james | 2008-08-01 08:50:39 +0200 (Fri, 01 Aug 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog Version 2.1_rc9 ------------------------------------------------------------------------ r3149 | james | 2008-08-01 00:03:38 +0200 (Fri, 01 Aug 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/easy-rsa/Windows/vars.bat.sample M /branches/BETA21/openvpn/install-win32/getopenssl M /branches/BETA21/openvpn/install-win32/openssl/openssl098.patch In Windows build, package a statically linked openssl.exe to work around observed instabilities in the dynamic build since the migration to OpenSSL 0.9.8h. ------------------------------------------------------------------------ r3147 | james | 2008-07-31 19:44:52 +0200 (Thu, 31 Jul 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/version.m4 Updated ChangeLog and version number. ------------------------------------------------------------------------ r3129 | james | 2008-07-27 20:20:52 +0200 (Sun, 27 Jul 2008) | 8 lines Changed paths: M /branches/BETA21/openvpn/init.c Added additional warnings for: * --tls-remote -- some people misunderstand the semantics * --script-security -- warn if script-security will allow user-defined scripts to be called, and also warn separately if passwords may be passed to scripts via the environment ------------------------------------------------------------------------ r3128 | james | 2008-07-27 07:31:09 +0200 (Sun, 27 Jul 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h Added additional defensive programming to buffer.[ch] functions. ------------------------------------------------------------------------ r3127 | james | 2008-07-27 02:43:49 +0200 (Sun, 27 Jul 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/misc.c Added a warning message when passwords are cached in memory. ------------------------------------------------------------------------ r3126 | james | 2008-07-27 01:08:29 +0200 (Sun, 27 Jul 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/tun.c Perform additional input validation on options pulled by client from server. Fixes --iproute vulnerability. ------------------------------------------------------------------------ r3125 | james | 2008-07-26 10:27:50 +0200 (Sat, 26 Jul 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/cryptoapi.c M /branches/BETA21/openvpn/error.c M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/win32.c Fixed compiler warnings in Windows build (MinGW). ------------------------------------------------------------------------ r3122 | james | 2008-07-26 09:27:03 +0200 (Sat, 26 Jul 2008) | 19 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/debug/valgrind-suppress M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/lladdr.c M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/openvpn.c M /branches/BETA21/openvpn/options.c A /branches/BETA21/openvpn/plugin/examples/log.c M /branches/BETA21/openvpn/plugin.c M /branches/BETA21/openvpn/plugin.h M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/win32.c M /branches/BETA21/openvpn/win32.h Completely revamped the system for calling external programs and scripts: * All external programs and scripts are now called by execve() on unix and CreateProcess on Windows. * The system() function is no longer used. * Argument lists for external programs and scripts are now built by the new argv_printf function which natively outputs to string arrays (i.e. char *argv[] lists), never truncates its output, and eliminates the security issues inherent in formatting and parsing command lines, and dealing with argument quoting. * The --script-security directive has been added to offer policy controls on OpenVPN's execution of external programs and scripts. Also added a new plugin example (openvpn/plugin/examples/log.c) that logs information to stdout for every plugin method called by OpenVPN. ------------------------------------------------------------------------ r3107 | james | 2008-07-23 21:51:27 +0200 (Wed, 23 Jul 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/init.c Added argv_x functions to buffer.[ch] to be used to safely build up argv strings for execve without the possibility of truncation or misinterpretation of mid-argument spacing. ------------------------------------------------------------------------ r3085 | james | 2008-07-19 05:39:59 +0200 (Sat, 19 Jul 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h buf_printf will now return false on errors, such as truncation due to overflow. ------------------------------------------------------------------------ r3084 | james | 2008-07-19 05:33:27 +0200 (Sat, 19 Jul 2008) | 9 lines Changed paths: M /branches/BETA21/openvpn/ssl.c Modified extract_x509_field_ssl to return a status value indicating success/error, and any truncation of output due to an insufficiently large output buffer will be cause for error. In verify_callback, read X509 Subject Name without truncation. In verify_callback, rather than silently truncating Common Name at 64 bytes, throw an error if Common Name is larger than 64 bytes. ------------------------------------------------------------------------ r3083 | james | 2008-07-19 02:29:31 +0200 (Sat, 19 Jul 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/ssl.c Replace leading dash ('-') characters in an X509 name with underbars ('_') before calling user-defined scripts, to preclude the chance of a leading dash being interpreted as an option prefix. ------------------------------------------------------------------------ r3082 | james | 2008-07-19 01:49:50 +0200 (Sat, 19 Jul 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/plugin.c Added a warning when plugins are specified without an absolute pathname. ------------------------------------------------------------------------ r3081 | james | 2008-07-18 22:46:06 +0200 (Fri, 18 Jul 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/tun.c Reverted some recent buffer.[ch] changes, including r3058 (except for likely() and unlikely() macro additions to syshead.h) and r3061. I would like to give more thought to the bigger issue of fortifying buffer.[ch] through the use of additional defensive programming techniques. ------------------------------------------------------------------------ r3078 | james | 2008-07-18 09:25:47 +0200 (Fri, 18 Jul 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/options.c Fixed format string issue in read_inline_file, used in the config file parser. ------------------------------------------------------------------------ r3077 | james | 2008-07-18 09:15:27 +0200 (Fri, 18 Jul 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/status.c status_printf function will now set error flag on output truncation or failure of write() to write the expected number of bytes. Raised STATUS_PRINTF_MAXLEN to 512 (from 256). ------------------------------------------------------------------------ r3076 | james | 2008-07-18 02:55:59 +0200 (Fri, 18 Jul 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/misc.c gen_path will no longer silently truncate the generated filename at 256 bytes. ------------------------------------------------------------------------ r3075 | james | 2008-07-18 02:42:37 +0200 (Fri, 18 Jul 2008) | 5 lines Changed paths: M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/syshead.h Fixed code inclusion bug that was erroneously testing defined(P2MP_SERVER) rather than P2MP_SERVER. Fixed compile issues when USE_CRYPTO is undefined. ------------------------------------------------------------------------ r3074 | james | 2008-07-18 02:32:40 +0200 (Fri, 18 Jul 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/misc.c Modified create_temp_filename to create unpredictable filenames. ------------------------------------------------------------------------ r3073 | james | 2008-07-18 01:31:16 +0200 (Fri, 18 Jul 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/plugin.c Previously, OpenVPN might log a client's auth-user-pass password if the verbosity was set to a high debug level such as 7 or higher. Normally this would only be used by developers. Now, even at high debug levels, the password will not be output. ------------------------------------------------------------------------ r3072 | james | 2008-07-18 00:41:15 +0200 (Fri, 18 Jul 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/win32.c M /branches/BETA21/openvpn/win32.h gen_path now rejects filenames that match Windows device names such as CON, NUL, LPT1, etc. ------------------------------------------------------------------------ r3070 | james | 2008-07-17 22:57:42 +0200 (Thu, 17 Jul 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/ps.c Call prng_init after fork in background process created by port_share_open, so as to ensure a newly seeded PRNG sequence. This is strictly defensive programming since port_share_proxy currently does not use the PRNG. ------------------------------------------------------------------------ r3069 | james | 2008-07-17 22:47:12 +0200 (Thu, 17 Jul 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/init.c Added warning when using chroot without specifying user and group. ------------------------------------------------------------------------ r3068 | james | 2008-07-17 22:10:18 +0200 (Thu, 17 Jul 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h Check for multiplication overflow on ALLOC_ARRAY* functions. ------------------------------------------------------------------------ r3066 | james | 2008-07-17 21:07:41 +0200 (Thu, 17 Jul 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/ssl.c Removed old version of extract_x509_field. ------------------------------------------------------------------------ r3065 | james | 2008-07-17 20:56:09 +0200 (Thu, 17 Jul 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/reliable.c Support wraparound of reliable.[ch] packet IDs. In practice, wraparound of the packet ID sequence is extremely unlikely since the sequence is restarted for each mid-session TLS renegotiation. But we will support it for completeness. ------------------------------------------------------------------------ r3064 | james | 2008-07-17 07:09:27 +0200 (Thu, 17 Jul 2008) | 7 lines Changed paths: M /branches/BETA21/openvpn/ntlm.c M /branches/BETA21/openvpn/proxy.c Fixed a potential information leak in the new NTLM phase 3 code, as well as a failure of the code to check the return value from base64_decode. Fixed compiler warnings in the new NTLM phase 3 code about implicit casting between signed and unsigned char *. ------------------------------------------------------------------------ r3063 | james | 2008-07-17 06:25:50 +0200 (Thu, 17 Jul 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/crypto.c Fixed issue in read_key_file, where the return value of read() wasn't being checked for errors. ------------------------------------------------------------------------ r3062 | james | 2008-07-17 01:11:29 +0200 (Thu, 17 Jul 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h Added SOCKET_SND_RCV_BUF_MAX constant (set to 1000000) to limit the maximum size passed to setsockopt SNDBUF/RCVBUF. ------------------------------------------------------------------------ r3061 | james | 2008-07-17 00:37:09 +0200 (Thu, 17 Jul 2008) | 5 lines Changed paths: M /branches/BETA21/openvpn/tun.c In the Windows version of tun_finalize, on errors that would return -1, set buf->len to 0 rather than -1. While downstream code is set up to consider the buffer invalidated if its length is <= 0, this change makes the code cleaner and safer. ------------------------------------------------------------------------ r3060 | james | 2008-07-16 23:50:43 +0200 (Wed, 16 Jul 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/error.h Used unlikely() macro to tell compiler that msg() will usually be silent. ------------------------------------------------------------------------ r3058 | james | 2008-07-16 22:36:54 +0200 (Wed, 16 Jul 2008) | 9 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/version.m4 Added likely() and unlikely() branch prediction hint macros to syshead.h Introduced BUF_MAX constant to limit struct buffer offset and length values. BUF_MAX has been set to 2^20. Use likely() and unlikely() macros in buffer.h code to allow the compiler to generate more efficient code. ------------------------------------------------------------------------ r3048 | james | 2008-07-14 20:59:09 +0200 (Mon, 14 Jul 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/COPYING M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/INSTALL M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/PORTS M /branches/BETA21/openvpn/README M /branches/BETA21/openvpn/basic.h M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/circ_list.h M /branches/BETA21/openvpn/common.h M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/contrib/pull-resolv-conf/client.down M /branches/BETA21/openvpn/contrib/pull-resolv-conf/client.up M /branches/BETA21/openvpn/crypto.c M /branches/BETA21/openvpn/crypto.h M /branches/BETA21/openvpn/easy-rsa/2.0/pkitool M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/error.c M /branches/BETA21/openvpn/error.h M /branches/BETA21/openvpn/event.c M /branches/BETA21/openvpn/event.h M /branches/BETA21/openvpn/fdmisc.c M /branches/BETA21/openvpn/fdmisc.h M /branches/BETA21/openvpn/forward-inline.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/forward.h M /branches/BETA21/openvpn/fragment.c M /branches/BETA21/openvpn/fragment.h M /branches/BETA21/openvpn/gremlin.c M /branches/BETA21/openvpn/gremlin.h M /branches/BETA21/openvpn/helper.c M /branches/BETA21/openvpn/helper.h M /branches/BETA21/openvpn/images/Makefile.am M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/init.h M /branches/BETA21/openvpn/install-win32/Makefile.am M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/integer.h M /branches/BETA21/openvpn/interval.c M /branches/BETA21/openvpn/interval.h M /branches/BETA21/openvpn/list.c M /branches/BETA21/openvpn/list.h M /branches/BETA21/openvpn/lzo.c M /branches/BETA21/openvpn/lzo.h M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/mbuf.c M /branches/BETA21/openvpn/mbuf.h M /branches/BETA21/openvpn/memdbg.h M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/mroute.c M /branches/BETA21/openvpn/mroute.h M /branches/BETA21/openvpn/mss.c M /branches/BETA21/openvpn/mss.h M /branches/BETA21/openvpn/mtcp.c M /branches/BETA21/openvpn/mtcp.h M /branches/BETA21/openvpn/mtu.c M /branches/BETA21/openvpn/mtu.h M /branches/BETA21/openvpn/mudp.c M /branches/BETA21/openvpn/mudp.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/multi.h M /branches/BETA21/openvpn/occ-inline.h M /branches/BETA21/openvpn/occ.c M /branches/BETA21/openvpn/occ.h M /branches/BETA21/openvpn/openvpn-plugin.h M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/openvpn.c M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/otime.c M /branches/BETA21/openvpn/otime.h M /branches/BETA21/openvpn/packet_id.c M /branches/BETA21/openvpn/packet_id.h M /branches/BETA21/openvpn/perf.c M /branches/BETA21/openvpn/perf.h M /branches/BETA21/openvpn/pf-inline.h M /branches/BETA21/openvpn/pf.c M /branches/BETA21/openvpn/pf.h M /branches/BETA21/openvpn/ping-inline.h M /branches/BETA21/openvpn/ping.c M /branches/BETA21/openvpn/ping.h M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h M /branches/BETA21/openvpn/plugin/auth-pam/auth-pam.c M /branches/BETA21/openvpn/plugin/defer/simple.c M /branches/BETA21/openvpn/plugin/down-root/down-root.c M /branches/BETA21/openvpn/plugin/examples/simple.c M /branches/BETA21/openvpn/plugin.c M /branches/BETA21/openvpn/plugin.h M /branches/BETA21/openvpn/pool.c M /branches/BETA21/openvpn/pool.h M /branches/BETA21/openvpn/proto.c M /branches/BETA21/openvpn/proto.h M /branches/BETA21/openvpn/proxy.c M /branches/BETA21/openvpn/proxy.h M /branches/BETA21/openvpn/ps.c M /branches/BETA21/openvpn/ps.h M /branches/BETA21/openvpn/push.c M /branches/BETA21/openvpn/push.h M /branches/BETA21/openvpn/reliable.c M /branches/BETA21/openvpn/reliable.h M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h M /branches/BETA21/openvpn/schedule.c M /branches/BETA21/openvpn/schedule.h M /branches/BETA21/openvpn/service-win32/Makefile.am M /branches/BETA21/openvpn/service-win32/openvpnserv.c M /branches/BETA21/openvpn/session_id.c M /branches/BETA21/openvpn/session_id.h M /branches/BETA21/openvpn/shaper.c M /branches/BETA21/openvpn/shaper.h M /branches/BETA21/openvpn/sig.c M /branches/BETA21/openvpn/sig.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/socks.c M /branches/BETA21/openvpn/socks.h M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h M /branches/BETA21/openvpn/status.c M /branches/BETA21/openvpn/status.h M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/tap-win32/common.h M /branches/BETA21/openvpn/tap-win32/constants.h M /branches/BETA21/openvpn/tap-win32/dhcp.c M /branches/BETA21/openvpn/tap-win32/dhcp.h M /branches/BETA21/openvpn/tap-win32/endian.h M /branches/BETA21/openvpn/tap-win32/error.c M /branches/BETA21/openvpn/tap-win32/error.h M /branches/BETA21/openvpn/tap-win32/hexdump.c M /branches/BETA21/openvpn/tap-win32/hexdump.h M /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf.in M /branches/BETA21/openvpn/tap-win32/instance.c M /branches/BETA21/openvpn/tap-win32/lock.h M /branches/BETA21/openvpn/tap-win32/macinfo.c M /branches/BETA21/openvpn/tap-win32/macinfo.h M /branches/BETA21/openvpn/tap-win32/mem.c M /branches/BETA21/openvpn/tap-win32/proto.h M /branches/BETA21/openvpn/tap-win32/prototypes.h M /branches/BETA21/openvpn/tap-win32/resource.rc M /branches/BETA21/openvpn/tap-win32/tapdrvr.c M /branches/BETA21/openvpn/tap-win32/types.h M /branches/BETA21/openvpn/thread.c M /branches/BETA21/openvpn/thread.h M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h M /branches/BETA21/openvpn/win32.c M /branches/BETA21/openvpn/win32.h Copyright change OpenVPN Solutions LLC -> Telethra, Inc. ------------------------------------------------------------------------ r2997 | james | 2008-06-13 09:53:51 +0200 (Fri, 13 Jun 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/install-win32/build-pkcs11-helper.sh Version 2.1_rc8 On Windows, use -leay32 and -lssl32 to link with OpenSSL. On Windows, bundle pkcs11-helper-1.06-beta1. ------------------------------------------------------------------------ r2995 | james | 2008-06-11 23:59:26 +0200 (Wed, 11 Jun 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/COPYING M /branches/BETA21/openvpn/INSTALL M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/PORTS M /branches/BETA21/openvpn/README M /branches/BETA21/openvpn/basic.h M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/circ_list.h M /branches/BETA21/openvpn/common.h M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/contrib/pull-resolv-conf/client.down M /branches/BETA21/openvpn/contrib/pull-resolv-conf/client.up M /branches/BETA21/openvpn/crypto.c M /branches/BETA21/openvpn/crypto.h M /branches/BETA21/openvpn/easy-rsa/2.0/pkitool M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/error.c M /branches/BETA21/openvpn/error.h M /branches/BETA21/openvpn/event.c M /branches/BETA21/openvpn/event.h M /branches/BETA21/openvpn/fdmisc.c M /branches/BETA21/openvpn/fdmisc.h M /branches/BETA21/openvpn/forward-inline.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/forward.h M /branches/BETA21/openvpn/fragment.c M /branches/BETA21/openvpn/fragment.h M /branches/BETA21/openvpn/gremlin.c M /branches/BETA21/openvpn/gremlin.h M /branches/BETA21/openvpn/helper.c M /branches/BETA21/openvpn/helper.h M /branches/BETA21/openvpn/images/Makefile.am M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/init.h M /branches/BETA21/openvpn/install-win32/Makefile.am M /branches/BETA21/openvpn/integer.h M /branches/BETA21/openvpn/interval.c M /branches/BETA21/openvpn/interval.h M /branches/BETA21/openvpn/list.c M /branches/BETA21/openvpn/list.h M /branches/BETA21/openvpn/lzo.c M /branches/BETA21/openvpn/lzo.h M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/mbuf.c M /branches/BETA21/openvpn/mbuf.h M /branches/BETA21/openvpn/memdbg.h M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/mroute.c M /branches/BETA21/openvpn/mroute.h M /branches/BETA21/openvpn/mss.c M /branches/BETA21/openvpn/mss.h M /branches/BETA21/openvpn/mtcp.c M /branches/BETA21/openvpn/mtcp.h M /branches/BETA21/openvpn/mtu.c M /branches/BETA21/openvpn/mtu.h M /branches/BETA21/openvpn/mudp.c M /branches/BETA21/openvpn/mudp.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/multi.h M /branches/BETA21/openvpn/occ-inline.h M /branches/BETA21/openvpn/occ.c M /branches/BETA21/openvpn/occ.h M /branches/BETA21/openvpn/openvpn-plugin.h M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/openvpn.c M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/otime.c M /branches/BETA21/openvpn/otime.h M /branches/BETA21/openvpn/packet_id.c M /branches/BETA21/openvpn/packet_id.h M /branches/BETA21/openvpn/perf.c M /branches/BETA21/openvpn/perf.h M /branches/BETA21/openvpn/pf-inline.h M /branches/BETA21/openvpn/pf.c M /branches/BETA21/openvpn/pf.h M /branches/BETA21/openvpn/ping-inline.h M /branches/BETA21/openvpn/ping.c M /branches/BETA21/openvpn/ping.h M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h M /branches/BETA21/openvpn/plugin/auth-pam/auth-pam.c M /branches/BETA21/openvpn/plugin/defer/simple.c M /branches/BETA21/openvpn/plugin/down-root/down-root.c M /branches/BETA21/openvpn/plugin/examples/simple.c M /branches/BETA21/openvpn/plugin.c M /branches/BETA21/openvpn/plugin.h M /branches/BETA21/openvpn/pool.c M /branches/BETA21/openvpn/pool.h M /branches/BETA21/openvpn/proto.c M /branches/BETA21/openvpn/proto.h M /branches/BETA21/openvpn/proxy.c M /branches/BETA21/openvpn/proxy.h M /branches/BETA21/openvpn/ps.c M /branches/BETA21/openvpn/ps.h M /branches/BETA21/openvpn/push.c M /branches/BETA21/openvpn/push.h M /branches/BETA21/openvpn/reliable.c M /branches/BETA21/openvpn/reliable.h M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h M /branches/BETA21/openvpn/schedule.c M /branches/BETA21/openvpn/schedule.h M /branches/BETA21/openvpn/service-win32/Makefile.am M /branches/BETA21/openvpn/service-win32/openvpnserv.c M /branches/BETA21/openvpn/session_id.c M /branches/BETA21/openvpn/session_id.h M /branches/BETA21/openvpn/shaper.c M /branches/BETA21/openvpn/shaper.h M /branches/BETA21/openvpn/sig.c M /branches/BETA21/openvpn/sig.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/socks.c M /branches/BETA21/openvpn/socks.h M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h M /branches/BETA21/openvpn/status.c M /branches/BETA21/openvpn/status.h M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/tap-win32/common.h M /branches/BETA21/openvpn/tap-win32/constants.h M /branches/BETA21/openvpn/tap-win32/dhcp.c M /branches/BETA21/openvpn/tap-win32/dhcp.h M /branches/BETA21/openvpn/tap-win32/endian.h M /branches/BETA21/openvpn/tap-win32/error.c M /branches/BETA21/openvpn/tap-win32/error.h M /branches/BETA21/openvpn/tap-win32/hexdump.c M /branches/BETA21/openvpn/tap-win32/hexdump.h M /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf.in M /branches/BETA21/openvpn/tap-win32/instance.c M /branches/BETA21/openvpn/tap-win32/lock.h M /branches/BETA21/openvpn/tap-win32/macinfo.c M /branches/BETA21/openvpn/tap-win32/macinfo.h M /branches/BETA21/openvpn/tap-win32/mem.c M /branches/BETA21/openvpn/tap-win32/proto.h M /branches/BETA21/openvpn/tap-win32/prototypes.h M /branches/BETA21/openvpn/tap-win32/tapdrvr.c M /branches/BETA21/openvpn/tap-win32/types.h M /branches/BETA21/openvpn/thread.c M /branches/BETA21/openvpn/thread.h M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h M /branches/BETA21/openvpn/win32.c M /branches/BETA21/openvpn/win32.h Updated copyright notice to 2008. ------------------------------------------------------------------------ r2994 | james | 2008-06-11 23:38:07 +0200 (Wed, 11 Jun 2008) | 7 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/easy-rsa/2.0/vars M /branches/BETA21/openvpn/install-win32/build-pkcs11-helper.sh M /branches/BETA21/openvpn/version.m4 Updated version & changelog. Updated build-pkcs11-helper.sh to build from OpenSSL 0.9.8h. Added pkcs11-related fixes to easy-rsa/2.0/vars. ------------------------------------------------------------------------ r2993 | james | 2008-06-11 12:48:50 +0200 (Wed, 11 Jun 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/helper.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/occ.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/openvpn.c M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/proxy.c M /branches/BETA21/openvpn/proxy.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/socks.c M /branches/BETA21/openvpn/socks.h M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/version.m4 Merged connection profiles from http://svn.openvpn.net/projects/openvpn/test/conn ------------------------------------------------------------------------ r2991 | james | 2008-06-11 10:45:09 +0200 (Wed, 11 Jun 2008) | 16 lines Changed paths: M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/debug/valgrind-suppress A /branches/BETA21/openvpn/dovalns M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/error.c M /branches/BETA21/openvpn/error.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/management/management-notes.txt M /branches/BETA21/openvpn/mroute.c M /branches/BETA21/openvpn/mroute.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/multi.h M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h A /branches/BETA21/openvpn/pf-inline.h M /branches/BETA21/openvpn/pf.c M /branches/BETA21/openvpn/pf.h M /branches/BETA21/openvpn/proto.h M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/version.m4 Updated version to 2.1_rc7e. Added client authentication and packet filtering capability to management interface. Extended packet filtering capability to work on both --dev tun and --dev tap tunnels. Updated valgrind-suppress file. Made "Linux ip addr del failed" error nonfatal. Amplified --client-cert-not-required warning. Added #pragma pack to proto.h. ------------------------------------------------------------------------ r2982 | james | 2008-06-04 12:53:57 +0200 (Wed, 04 Jun 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/install-win32/Makefile.am D /branches/BETA21/openvpn/install-win32/buildopensslpath.bat A /branches/BETA21/openvpn/install-win32/openssl A /branches/BETA21/openvpn/install-win32/openssl/README.txt A /branches/BETA21/openvpn/install-win32/openssl/openssl097.patch (from /branches/BETA21/openvpn/install-win32/openssl.patch:2981) A /branches/BETA21/openvpn/install-win32/openssl/openssl098.patch D /branches/BETA21/openvpn/install-win32/openssl.patch M /branches/BETA21/openvpn/install-win32/settings.in Added support for building and linking with openssl-0.9.8h on Windows. ------------------------------------------------------------------------ r2981 | james | 2008-06-04 09:23:20 +0200 (Wed, 04 Jun 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/debug/valgrind-suppress M /branches/BETA21/openvpn/doval M /branches/BETA21/openvpn/openvpn.c Fixed unbounded memory growth bug in environmental variable code that could have caused long-running OpenVPN sessions with many TLS renegotiations to incrementally increase memory usage over time. ------------------------------------------------------------------------ r2980 | james | 2008-06-04 08:17:53 +0200 (Wed, 04 Jun 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/ssl.c Fixed an issue in extract_x509_field_ssl where the extraction would fail on the first field of the subject name, such as the common name in: /CN=foo/emailAddress=foo@bar.com ------------------------------------------------------------------------ r2979 | james | 2008-06-04 08:00:42 +0200 (Wed, 04 Jun 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/plugin/auth-pam/auth-pam.c In auth-pam authentication module, even when in debug mode, never output passwords to stderr. ------------------------------------------------------------------------ r2978 | james | 2008-06-04 07:16:44 +0200 (Wed, 04 Jun 2008) | 30 lines Changed paths: M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/install-win32/Makefile.am M /branches/BETA21/openvpn/list.c M /branches/BETA21/openvpn/list.h M /branches/BETA21/openvpn/mroute.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/openvpn-plugin.h M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/packet_id.c A /branches/BETA21/openvpn/pf.c A /branches/BETA21/openvpn/pf.h M /branches/BETA21/openvpn/plugin/defer/simple.c M /branches/BETA21/openvpn/plugin.c A /branches/BETA21/openvpn/sources M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/version.m4 Incremented version to 2.1_rc7d. Support asynchronous authentication by plugins by allowing OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY to return OPENVPN_PLUGIN_FUNC_DEFERRED. See comments in openvpn-plugin.h for documentation. Enabled by ENABLE_DEF_AUTH. Added a simple packet filter functionality that can be driven by a plugin. See comments in openvpn-plugin.h for documentation. Enabled by ENABLE_PF. See openvpn/plugin/defer/simple.c for examples of ENABLE_DEF_AUTH and ENABLE_PF. "TLS Error: local/remote TLS keys are out of sync" is no longer a fatal error for TCP-based sessions, since the error can arise normally in the course of deferred authentication. In a related change, allow packet-id sequence to begin at some number n > 0 for TCP sessions, rather than strictly requiring sequence to begin at 1. Added a test to configure.ac for LoadLibrary function on Windows. Modified "make dist" function to include all files from install-win32 so that ./domake-win can be run from a tarball-expanded directory. setenv and setenv-safe directives may now omit a value argument which defaults to "". ------------------------------------------------------------------------ r2973 | james | 2008-05-26 00:31:25 +0200 (Mon, 26 May 2008) | 8 lines Changed paths: M /branches/BETA21/openvpn/memdbg.h M /branches/BETA21/openvpn/openvpn-plugin.h M /branches/BETA21/openvpn/plugin/defer/build M /branches/BETA21/openvpn/plugin/defer/simple.c M /branches/BETA21/openvpn/plugin/examples/build M /branches/BETA21/openvpn/plugin.c Fixed a bug in plugin.c that caused openvpn_plugin_client_destructor_v1 to not be called for the top-level "generic" client template. Added additional documentation to openvpn-plugin.h that more clearly illustrates the full sequence and ordering of plugin callbacks (plugin/defer/simple.c was extended to provide the raw data for this documentation). ------------------------------------------------------------------------ r2969 | james | 2008-05-25 01:26:11 +0200 (Sun, 25 May 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/debug/valgrind-suppress A /branches/BETA21/openvpn/doval M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/openvpn-plugin.h A /branches/BETA21/openvpn/plugin/defer (from /branches/BETA21/openvpn/plugin/examples:2965) R /branches/BETA21/openvpn/plugin/defer/README (from /branches/BETA21/openvpn/plugin/examples/README:2967) R /branches/BETA21/openvpn/plugin/defer/build (from /branches/BETA21/openvpn/plugin/examples/build:2967) R /branches/BETA21/openvpn/plugin/defer/simple.c (from /branches/BETA21/openvpn/plugin/examples/simple.c:2967) R /branches/BETA21/openvpn/plugin/defer/simple.def (from /branches/BETA21/openvpn/plugin/examples/simple.def:2967) R /branches/BETA21/openvpn/plugin/defer/winbuild (from /branches/BETA21/openvpn/plugin/examples/winbuild:2967) M /branches/BETA21/openvpn/plugin.c M /branches/BETA21/openvpn/push.c M /branches/BETA21/openvpn/push.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h Support asynchronous/deferred authentication in OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY plugin handler. See documentation in openvpn-plugin.h and example usage in plugin/defer/simple.c. ------------------------------------------------------------------------ r2967 | james | 2008-05-24 21:17:12 +0200 (Sat, 24 May 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn M /branches/BETA21/openvpn/install-win32 M /branches/BETA21/openvpn/service-win32 Did: svn propset svn:ignore -F .svnignore . on the modified .svnignore files. ------------------------------------------------------------------------ r2966 | james | 2008-05-24 21:05:59 +0200 (Sat, 24 May 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/.svnignore M /branches/BETA21/openvpn/install-win32/.svnignore M /branches/BETA21/openvpn/service-win32/.svnignore Modified .svnignore to only ignore files generated by the auto* tools and make. ------------------------------------------------------------------------ r2959 | james | 2008-05-12 22:31:43 +0200 (Mon, 12 May 2008) | 2 lines Changed paths: A /branches/BETA21 (from /test/auto:2958) D /test/auto Moved branch into official BETA21 position. ------------------------------------------------------------------------ r2957 | james | 2008-05-11 19:39:56 +0200 (Sun, 11 May 2008) | 7 lines Changed paths: M /test/auto/openvpn/doclean M /test/auto/openvpn/install-win32/makeopenvpn M /test/auto/openvpn/install-win32/settings.in In ./domake-win build system, use "windest" directory for the output of "make install". Remove SVC_TEMPLATE definition and references. Update ./doclean to remove all generated files. ------------------------------------------------------------------------ r2956 | alon | 2008-05-11 10:51:47 +0200 (Sun, 11 May 2008) | 9 lines Changed paths: M /test/auto/openvpn/Makefile.am M /test/auto/openvpn/install-win32/Makefile.am More cleanups maintainer clean also $(srcdir)/config-win32.h $(srcdir)/openvpn.spec as we distribute this in tarball, as distclean will not clean them if separate builddir is specified. Do not install INSTALL-win32.txt. ------------------------------------------------------------------------ r2955 | alon | 2008-05-11 10:35:59 +0200 (Sun, 11 May 2008) | 1 line Changed paths: D /test/auto/openvpn/makefile.w32 Delete makefile.w32 ------------------------------------------------------------------------ r2954 | alon | 2008-05-11 10:27:42 +0200 (Sun, 11 May 2008) | 14 lines Changed paths: M /test/auto/openvpn/Makefile.am M /test/auto/openvpn/configure.ac D /test/auto/openvpn/gentoo M /test/auto/openvpn/images/Makefile.am M /test/auto/openvpn/install-win32/Makefile.am M /test/auto/openvpn/service-win32/Makefile.am D /test/auto/openvpn/service-win32/mkpatch A /test/auto/openvpn/service-win32/service.c A /test/auto/openvpn/service-win32/service.h D /test/auto/openvpn/service-win32/service.patch M /test/auto/openvpn/tap-win32/common.h More cleanups Put platform sdk samples in svn, remove --enable-win32-service and --with-win32-sdk-service-sample from autoconf. Reorder Makefile.am. Support "make maintainer-clean" to return to svn clean state. Fixup tap-win32/common.h to include config.h without path if HAVE_CONFIG_H. Remove gentoo stuff as it is too old and not needed or used by build. ------------------------------------------------------------------------ r2953 | james | 2008-05-11 08:39:59 +0200 (Sun, 11 May 2008) | 20 lines Changed paths: M /test/auto/openvpn/configure.ac M /test/auto/openvpn/doclean M /test/auto/openvpn/domake-win M /test/auto/openvpn/install-win32/getpkcs11helper M /test/auto/openvpn/install-win32/makeopenvpn D /test/auto/openvpn/install-win32/makeservice M /test/auto/openvpn/install-win32/settings.in M /test/auto/openvpn/tap-win32/common.h M /test/auto/openvpn/version.m4 Modified ./domake-win build system to use cross-platform autoconf/automake scripts to build openvpn.exe and openvpnserv.exe under MinGW. Moved definition of PRODUCT_TAP_ID to version.m4 from install-win32/settings.in. Fixed incorrect assumption in tap-win32/common.h on whether to include config-win32.h (for MSVC builds) or config.h (for MinGW builds). The problem is that there is a third case for which _MSC_VER is also defined: building the TAP driver using the MS DDK. Removed -Wpointer-arith and -Wsign-compare from ./configure --enable-strict to suppress spurious warnings. Incremented version number to 2.1_rc7c (version.m4). Incremented PRODUCT_TAP_WIN32_MIN_MAJOR to 9 to match the major version of the current TAP driver (version.m4). ------------------------------------------------------------------------ r2951 | alon | 2008-05-10 22:28:19 +0200 (Sat, 10 May 2008) | 1 line Changed paths: M /test/auto/openvpn/service-win32/mkpatch New version of mkpatch script ------------------------------------------------------------------------ r2949 | alon | 2008-05-10 22:09:19 +0200 (Sat, 10 May 2008) | 1 line Changed paths: M /test/auto/openvpn/service-win32/Makefile.am Fix build on Linux ------------------------------------------------------------------------ r2948 | james | 2008-05-10 21:48:11 +0200 (Sat, 10 May 2008) | 5 lines Changed paths: M /test/auto/openvpn M /test/auto/openvpn/.svnignore M /test/auto/openvpn/Makefile.am M /test/auto/openvpn/acinclude.m4 M /test/auto/openvpn/base64.c M /test/auto/openvpn/buffer.c D /test/auto/openvpn/config-win32.h A /test/auto/openvpn/config-win32.h.in (from /contrib/alon/BETA21-win32-autoconf-3/openvpn/config-win32.h.in:2946) M /test/auto/openvpn/configure.ac M /test/auto/openvpn/crypto.c M /test/auto/openvpn/cryptoapi.c M /test/auto/openvpn/error.c M /test/auto/openvpn/event.c M /test/auto/openvpn/fdmisc.c M /test/auto/openvpn/forward.c M /test/auto/openvpn/fragment.c M /test/auto/openvpn/gremlin.c M /test/auto/openvpn/helper.c M /test/auto/openvpn/ieproxy.c M /test/auto/openvpn/images A /test/auto/openvpn/images/.svnignore (from /contrib/alon/BETA21-win32-autoconf-3/openvpn/images/.svnignore:2946) A /test/auto/openvpn/images/Makefile.am (from /contrib/alon/BETA21-win32-autoconf-3/openvpn/images/Makefile.am:2946) M /test/auto/openvpn/init.c M /test/auto/openvpn/install-win32 M /test/auto/openvpn/install-win32/.svnignore A /test/auto/openvpn/install-win32/Makefile.am (from /contrib/alon/BETA21-win32-autoconf-3/openvpn/install-win32/Makefile.am:2946) M /test/auto/openvpn/interval.c M /test/auto/openvpn/list.c M /test/auto/openvpn/lladdr.c M /test/auto/openvpn/lzo.c M /test/auto/openvpn/makefile.w32 M /test/auto/openvpn/manage.c M /test/auto/openvpn/mbuf.c M /test/auto/openvpn/misc.c M /test/auto/openvpn/mroute.c M /test/auto/openvpn/mss.c M /test/auto/openvpn/mtcp.c M /test/auto/openvpn/mtu.c M /test/auto/openvpn/mudp.c M /test/auto/openvpn/multi.c M /test/auto/openvpn/ntlm.c M /test/auto/openvpn/occ.c M /test/auto/openvpn/openvpn.c M /test/auto/openvpn/options.c M /test/auto/openvpn/otime.c M /test/auto/openvpn/packet_id.c M /test/auto/openvpn/perf.c M /test/auto/openvpn/ping.c M /test/auto/openvpn/pkcs11.c M /test/auto/openvpn/plugin.c M /test/auto/openvpn/pool.c M /test/auto/openvpn/proto.c M /test/auto/openvpn/proxy.c M /test/auto/openvpn/ps.c M /test/auto/openvpn/push.c M /test/auto/openvpn/reliable.c M /test/auto/openvpn/route.c M /test/auto/openvpn/schedule.c M /test/auto/openvpn/service-win32 A /test/auto/openvpn/service-win32/.svnignore (from /contrib/alon/BETA21-win32-autoconf-3/openvpn/service-win32/.svnignore:2946) D /test/auto/openvpn/service-win32/Makefile A /test/auto/openvpn/service-win32/Makefile.am (from /contrib/alon/BETA21-win32-autoconf-3/openvpn/service-win32/Makefile.am:2946) M /test/auto/openvpn/service-win32/openvpnserv.c M /test/auto/openvpn/service-win32/service.patch M /test/auto/openvpn/session_id.c M /test/auto/openvpn/shaper.c M /test/auto/openvpn/sig.c M /test/auto/openvpn/socket.c M /test/auto/openvpn/socks.c M /test/auto/openvpn/ssl.c M /test/auto/openvpn/status.c M /test/auto/openvpn/syshead.h M /test/auto/openvpn/tap-win32/common.h M /test/auto/openvpn/thread.c M /test/auto/openvpn/tun.c M /test/auto/openvpn/version.m4 M /test/auto/openvpn/win32.c Merged Alon's build system changes, that enable autoconf/automake scripts to build for Windows. svn merge -r2933:2946 https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21-win32-autoconf-3 . ------------------------------------------------------------------------ r2947 | james | 2008-05-10 21:18:02 +0200 (Sat, 10 May 2008) | 3 lines Changed paths: A /test/auto (from /branches/BETA21:2946) Branch to test integration of James's (./domake-win) and Alon's (autoconf/automake) build systems on Windows. ------------------------------------------------------------------------ r2937 | james | 2008-05-09 20:30:55 +0200 (Fri, 09 May 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/ntlm.c M /branches/BETA21/openvpn/proxy.c M /branches/BETA21/openvpn/proxy.h Added NTLMv2 proxy support (Miroslav Zajic). ------------------------------------------------------------------------ r2929 | james | 2008-05-09 07:04:37 +0200 (Fri, 09 May 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/pkcs11.c Added #include "base64.h" to pkcs11.c to fix compiler warning. ------------------------------------------------------------------------ r2928 | james | 2008-05-09 06:21:53 +0200 (Fri, 09 May 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/syshead.h On systems that support res_init, always call it before calling gethostbyname to ensure that resolver configuration state is current. ------------------------------------------------------------------------ r2927 | james | 2008-05-09 02:47:23 +0200 (Fri, 09 May 2008) | 5 lines Changed paths: M /branches/BETA21/openvpn/socket.c Bracketed struct openvpn_pktinfo with #pragma pack(1) to prevent structure padding from causing an incorrect length to be returned by sizeof (struct openvpn_pktinfo) on 64-bit platforms. ------------------------------------------------------------------------ r2926 | james | 2008-05-09 02:35:50 +0200 (Fri, 09 May 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/misc.c Quote device names before passing to up/down script (Josh Cepek). ------------------------------------------------------------------------ r2925 | james | 2008-05-09 02:32:46 +0200 (Fri, 09 May 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/tun.c Added Dragonfly BSD support (Francis-Gudin). ------------------------------------------------------------------------ r2924 | james | 2008-05-09 02:11:36 +0200 (Fri, 09 May 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/tun.c In Linux, non-CONFIG_FEATURE_IPROUTE version, for close_tun() ifconfig command, fixed a typo (Alon Bar-Lev). ------------------------------------------------------------------------ r2922 | james | 2008-05-09 01:57:58 +0200 (Fri, 09 May 2008) | 8 lines Changed paths: M /branches/BETA21/openvpn/base64.c M /branches/BETA21/openvpn/error.h M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/management/management-notes.txt M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h M /branches/BETA21/openvpn/ssl.c Added --pkcs11-id-management option, which will cause OpenVPN to query the management interface via the new NEED-STR asynchronous notification query to get additional PKCS#11 options (Alon Bar-Lev). Added NEED-STR management interface asynchronous query and "needstr" management interface command to respond to the query (Alon Bar-Lev). ------------------------------------------------------------------------ r2836 | james | 2008-03-11 08:03:12 +0200 (Tue, 11 Mar 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/install-win32/maketext M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/settings.in Misc XGUI fixes. ------------------------------------------------------------------------ r2835 | james | 2008-03-11 07:58:39 +0200 (Tue, 11 Mar 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/easy-rsa/2.0/pkitool Set tool defaults in pkitool. ------------------------------------------------------------------------ r2834 | james | 2008-03-10 12:02:20 +0200 (Mon, 10 Mar 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/COPYING M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/install-win32/getopenssl M /branches/BETA21/openvpn/install-win32/getpkcs11helper A /branches/BETA21/openvpn/install-win32/getxgui M /branches/BETA21/openvpn/install-win32/makeopenvpn M /branches/BETA21/openvpn/install-win32/makeservice M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/settings.in M /branches/BETA21/openvpn/version.m4 First working version of XGUI inclusion. ------------------------------------------------------------------------ r2783 | james | 2008-03-05 03:48:30 +0200 (Wed, 05 Mar 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/images/icon.ico M /branches/BETA21/openvpn/images/install-whirl.bmp Added new OpenVPN icon and installer graphic. ------------------------------------------------------------------------ r2760 | james | 2008-02-18 19:47:13 +0200 (Mon, 18 Feb 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/install-win32/makeopenvpn M /branches/BETA21/openvpn/install-win32/makeservice M /branches/BETA21/openvpn/install-win32/maketap M /branches/BETA21/openvpn/install-win32/maketapinstall Version 2.1_rc7a. Minor Windows build system changes: * Fall back to prebuilt-binary if gcc is not available. * Documentation changes in ./domake-win ------------------------------------------------------------------------ r2750 | james | 2008-02-17 10:27:34 +0200 (Sun, 17 Feb 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 Clarified tcp-queue-limit man page entry (Matti Linnanvuori). ------------------------------------------------------------------------ r2749 | james | 2008-02-17 10:21:28 +0200 (Sun, 17 Feb 2008) | 5 lines Changed paths: M /branches/BETA21/openvpn/crypto.h M /branches/BETA21/openvpn/ssl.c The new function extract_x509_field_ssl tends to break in early versions of OpenSSL 0.9.6. Now we will fall back to the old function extract_x509_field for OpenSSL 0.9.6. ------------------------------------------------------------------------ r2748 | james | 2008-02-17 09:05:49 +0200 (Sun, 17 Feb 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/tun.c Cleanup IP address for persistence interfaces for tap and also using ifconfig, gentoo#209055 (Alon Bar-Lev). ------------------------------------------------------------------------ r2711 | james | 2008-02-01 21:44:53 +0200 (Fri, 01 Feb 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/install-win32/getgui A /branches/BETA21/openvpn/install-win32/getprebuilt M /branches/BETA21/openvpn/install-win32/makeopenvpn M /branches/BETA21/openvpn/install-win32/settings.in Changes to Windows build system: added GENOUT_PREBUILT mode to allow building an OpenVPN installer with a reduced set of prerequisites. See comments in domake-win for more info. ------------------------------------------------------------------------ r2710 | james | 2008-02-01 12:13:59 +0200 (Fri, 01 Feb 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/install-win32/buildinstaller D /branches/BETA21/openvpn/install-win32/copyinstaller A /branches/BETA21/openvpn/install-win32/doclean M /branches/BETA21/openvpn/install-win32/getgui A /branches/BETA21/openvpn/install-win32/getopenssl A /branches/BETA21/openvpn/install-win32/getpkcs11helper D /branches/BETA21/openvpn/install-win32/makebin M /branches/BETA21/openvpn/install-win32/makeopenvpn A /branches/BETA21/openvpn/install-win32/makeservice M /branches/BETA21/openvpn/install-win32/maketap M /branches/BETA21/openvpn/install-win32/maketapinstall A /branches/BETA21/openvpn/install-win32/maketext M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/settings.in D /branches/BETA21/openvpn/install-win32/signinstaller D /branches/BETA21/openvpn/install-win32/signtap M /branches/BETA21/openvpn/install-win32/winconfig M /branches/BETA21/openvpn/version.m4 Changes to Windows build system to make it easier to do partial builds, where only a subset of OpenVPN installer components are built. See ./domake-win comments. ------------------------------------------------------------------------ r2702 | james | 2008-01-30 02:37:54 +0200 (Wed, 30 Jan 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/version.m4 Version 2.1_rc7 ------------------------------------------------------------------------ r2683 | james | 2008-01-26 06:43:13 +0200 (Sat, 26 Jan 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/tun.c Fixup null interface on close, don't use ip addr flush (Alon Bar-Lev). ------------------------------------------------------------------------ r2674 | james | 2008-01-25 03:01:51 +0200 (Fri, 25 Jan 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/version.m4 Added a few extra files that exist in the svn repo but were not being copied into the tarball by make dist. ------------------------------------------------------------------------ r2666 | james | 2008-01-24 09:44:49 +0200 (Thu, 24 Jan 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/version.m4 VERSION 2.1_rc6 ------------------------------------------------------------------------ r2664 | james | 2008-01-24 02:58:14 +0200 (Thu, 24 Jan 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/options.c Fixed pkcs11_private_mode undef. ------------------------------------------------------------------------ r2660 | james | 2008-01-23 23:08:22 +0200 (Wed, 23 Jan 2008) | 15 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/INSTALL-win32.txt M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/settings.in M /branches/BETA21/openvpn/version.m4 VERSION 2.1_rc5 Updated ChangeLog. Cleaned up start menu shortcuts in the Windows installer. Make sure that the uninstaller deletes SAMPCONF files. Minor uninstaller fixes to prevent files from being left behind after uninstall. Updated Windows notes. ------------------------------------------------------------------------ r2658 | james | 2008-01-23 13:00:58 +0200 (Wed, 23 Jan 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/tap-win32/prototypes.h Forgot to put struct WIN2K_NDIS_MINIPORT_BLOCK outside of #if ENABLE_NONADMIN block. ------------------------------------------------------------------------ r2657 | james | 2008-01-23 11:37:25 +0200 (Wed, 23 Jan 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/install-win32/settings.in M /branches/BETA21/openvpn/tap-win32/prototypes.h M /branches/BETA21/openvpn/tap-win32/tapdrvr.c Squashed Win2K TAP bug that was introduced by Vista fixes. ------------------------------------------------------------------------ r2656 | james | 2008-01-23 07:03:57 +0200 (Wed, 23 Jan 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/settings.in Incremented TAP version number to 9.4. Added SAMPCONF macros to settings.in and openvpn.nsi to allow a default configuration to be loaded by the installer. ------------------------------------------------------------------------ r2652 | james | 2008-01-23 02:19:51 +0200 (Wed, 23 Jan 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h Added --management-forget-disconnect option -- forget passwords when management session disconnects (Alon Bar-Lev). ------------------------------------------------------------------------ r2651 | james | 2008-01-23 01:52:08 +0200 (Wed, 23 Jan 2008) | 5 lines Changed paths: M /branches/BETA21/openvpn/domake-win A /branches/BETA21/openvpn/install-win32/ddk-common M /branches/BETA21/openvpn/install-win32/maketap M /branches/BETA21/openvpn/install-win32/maketapinstall M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/settings.in M /branches/BETA21/openvpn/tap-win32/prototypes.h M /branches/BETA21/openvpn/tap-win32/tapdrvr.c Upgraded TAP build scripts to use WDK 6001.17121 (Windows 2008 Server pre-RTM). Fixed typo of DESC_SecPKCS11DLLs in openvpn.nsi. ------------------------------------------------------------------------ r2649 | james | 2008-01-23 00:08:35 +0200 (Wed, 23 Jan 2008) | 15 lines Changed paths: M /branches/BETA21/openvpn/INSTALL M /branches/BETA21/openvpn/domake-win A /branches/BETA21/openvpn/install-win32/build-pkcs11-helper.sh M /branches/BETA21/openvpn/install-win32/makebin M /branches/BETA21/openvpn/install-win32/openssl.patch M /branches/BETA21/openvpn/install-win32/settings.in M /branches/BETA21/openvpn/version.m4 Incremented version number to 2.1_rc4a. Windows changes: Incremented included OpenSSL version to openssl-0.9.7m. Updated openssl.patch for openssl-0.9.7m and added some brief usage comments to the head of the patch. Added build-pkcs11-helper.sh for building the pkcs11-helper library. Integrated inclusion of pkcs11-helper into Windows build system. ------------------------------------------------------------------------ r2641 | james | 2008-01-21 21:59:58 +0200 (Mon, 21 Jan 2008) | 2 lines Changed paths: M /branches/BETA21/openvpn/tun.c Changed ASSERT(0) to a more descriptive fatal error in tun.c ------------------------------------------------------------------------ r2640 | james | 2008-01-21 21:38:41 +0200 (Mon, 21 Jan 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/configure.ac Fixed --disable-iproute2 in ./configure to actually disable iproute2 usage (Alon Bar-Lev). ------------------------------------------------------------------------ r2639 | james | 2008-01-21 21:34:13 +0200 (Mon, 21 Jan 2008) | 6 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/lladdr.c M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h Allow OpenVPN to run completely unprivileged under Linux by allowing openvpn --mktun to be used with --user and --group to set the UID/GID of the tun device node. Also added --iproute option to allow an alternative command to be executed in place of the default iproute2 command (Alon Bar-Lev). ------------------------------------------------------------------------ r2638 | james | 2008-01-21 21:09:56 +0200 (Mon, 21 Jan 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h Rewrote extract_x509_field and modified COMMON_NAME_CHAR_CLASS to allow forward slash characters ("/") in the X509 common name (Pavel Shramov). ------------------------------------------------------------------------ r2637 | james | 2008-01-21 21:00:43 +0200 (Mon, 21 Jan 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/plugin.c Added PLUGIN_LIBDIR preprocessor string to prepend a default plugin directory to the dlopen search list when the user specifies the basename of the plugin only (Marius Tomaschewski). ------------------------------------------------------------------------ r2636 | james | 2008-01-21 05:45:07 +0200 (Mon, 21 Jan 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/crypto.h Define ALLOW_NON_CBC_CIPHERS for people who don't want to use a CBC cipher for OpenVPN's data channel. ------------------------------------------------------------------------ r2635 | james | 2008-01-21 05:39:01 +0200 (Mon, 21 Jan 2008) | 3 lines Changed paths: M /branches/BETA21/openvpn/ssl.c Simple fix where options->ca_file was used without first being checked against NULL. ------------------------------------------------------------------------ r2634 | james | 2008-01-21 05:33:53 +0200 (Mon, 21 Jan 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/event.c epoll driver in event.c should be prepared to handle an EPOLLHUP event in the same way as it handles EPOLLIN, EPOLLPRI, or EPOLLERR events. ------------------------------------------------------------------------ r2633 | james | 2008-01-21 05:26:45 +0200 (Mon, 21 Jan 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/socket.c Fixed interim memory growth issue in TCP connect loop where "TCP: connect to %s failed, will try again in %d seconds: %s" is output. ------------------------------------------------------------------------ r2632 | james | 2008-01-21 05:13:57 +0200 (Mon, 21 Jan 2008) | 4 lines Changed paths: M /branches/BETA21/openvpn/easy-rsa/2.0/README Added note about alternative version of easy-rsa that supports subjectAltName for multi-domain web certificates. ------------------------------------------------------------------------ r2438 | james | 2007-10-26 17:20:32 +0200 (Fri, 26 Oct 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/pkcs11.c PKCS-11 fixups (Alon Bar-Lev). ------------------------------------------------------------------------ r2418 | james | 2007-10-22 22:06:14 +0200 (Mon, 22 Oct 2007) | 3 lines Changed paths: M /branches/BETA21/openvpn/COPYING M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/configure.ac D /branches/BETA21/openvpn/cryptoki-win32.h D /branches/BETA21/openvpn/cryptoki.h M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/makefile.w32 M /branches/BETA21/openvpn/makefile.w32-vc M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/openvpn.spec.in M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h D /branches/BETA21/openvpn/pkcs11-headers D /branches/BETA21/openvpn/pkcs11-helper-config.h D /branches/BETA21/openvpn/pkcs11-helper.c D /branches/BETA21/openvpn/pkcs11-helper.h M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h M /branches/BETA21/openvpn/ssl.c Use pkcs11-helper as external library, can be downloaded from https://www.opensc-project.org/pkcs11-helper (Alon Bar-Lev). ------------------------------------------------------------------------ r2414 | james | 2007-10-22 21:19:21 +0200 (Mon, 22 Oct 2007) | 3 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c Modified command line and config file parser to allow quoted strings using single quotes ('') (Alon Bar-Lev). ------------------------------------------------------------------------ r2413 | james | 2007-10-22 21:12:54 +0200 (Mon, 22 Oct 2007) | 3 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h Added --management-signal option to signal SIGUSR1 when the management interface disconnects (Alon Bar-Lev). ------------------------------------------------------------------------ r2412 | james | 2007-10-22 21:02:21 +0200 (Mon, 22 Oct 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/management/management-notes.txt Add "forget-passwords" command to the management interface (Alon Bar-Lev). ------------------------------------------------------------------------ r2259 | james | 2007-08-17 10:22:42 +0200 (Fri, 17 Aug 2007) | 4 lines Changed paths: M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/ssl.c AUTO_USERID feature -- if the auth-user-pass option is used with some argument ARG, then -ARG will be appended to the username string that is sent to the server. ------------------------------------------------------------------------ r2249 | james | 2007-08-14 21:36:29 +0200 (Tue, 14 Aug 2007) | 4 lines Changed paths: M /branches/BETA21/openvpn/doclean config-win32.h and install-win32/openvpn.nsi are no longer generated (i.e. they are now original sources), therefore doclean should not delete them. ------------------------------------------------------------------------ r2120 | james | 2007-07-18 05:16:04 +0200 (Wed, 18 Jul 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/images/icon.ico updated icon ------------------------------------------------------------------------ r2026 | james | 2007-06-11 23:06:11 +0200 (Mon, 11 Jun 2007) | 3 lines Changed paths: M /branches/BETA21/openvpn/multi.c Fixed a variable declaration that wasn't at the start of a block. ------------------------------------------------------------------------ r1900 | james | 2007-04-26 15:50:24 +0200 (Thu, 26 Apr 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/install-win32/settings.in script comment changes ------------------------------------------------------------------------ r1881 | james | 2007-04-26 01:52:12 +0200 (Thu, 26 Apr 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/version.m4 Version 2.1_rc4 ------------------------------------------------------------------------ r1880 | james | 2007-04-26 01:23:27 +0200 (Thu, 26 Apr 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/otime.c Fixed 64-bit portability bug in time_string function (Thomas Habets). ------------------------------------------------------------------------ r1875 | james | 2007-04-26 00:58:21 +0200 (Thu, 26 Apr 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/INSTALL M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/install-win32/dosname.pl M /branches/BETA21/openvpn/install-win32/maketapinstall M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/settings.in misc Windows build system changes ------------------------------------------------------------------------ r1874 | james | 2007-04-25 23:37:49 +0200 (Wed, 25 Apr 2007) | 7 lines Changed paths: M /branches/BETA21/openvpn/config-win32.h M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/errlevel.h A /branches/BETA21/openvpn/images/icon.ico (from /branches/BETA21/openvpn/images/openvpn.ico:1868) D /branches/BETA21/openvpn/images/openvpn.ico M /branches/BETA21/openvpn/install-win32/buildinstaller M /branches/BETA21/openvpn/install-win32/dosname.pl A /branches/BETA21/openvpn/install-win32/getgui A /branches/BETA21/openvpn/install-win32/ifdef.pl M /branches/BETA21/openvpn/install-win32/m4todef.pl M /branches/BETA21/openvpn/install-win32/macro.pl M /branches/BETA21/openvpn/install-win32/makebin M /branches/BETA21/openvpn/install-win32/maketap M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/settings.in M /branches/BETA21/openvpn/install-win32/signinstaller M /branches/BETA21/openvpn/install-win32/signtap M /branches/BETA21/openvpn/install-win32/trans.pl M /branches/BETA21/openvpn/install-win32/winconfig M /branches/BETA21/openvpn/makefile.w32 M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/proxy.c M /branches/BETA21/openvpn/service-win32/Makefile M /branches/BETA21/openvpn/service-win32/mkpatch M /branches/BETA21/openvpn/service-win32/openvpnserv.c M /branches/BETA21/openvpn/service-win32/service.patch M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/tap-win32/SOURCES.in M /branches/BETA21/openvpn/tap-win32/common.h M /branches/BETA21/openvpn/tap-win32/constants.h M /branches/BETA21/openvpn/tap-win32/error.c M /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf.in D /branches/BETA21/openvpn/tap-win32/inf64.patch M /branches/BETA21/openvpn/tap-win32/tapdrvr.c M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/version.m4 TAP driver now passes signing tests on Vista x64. Added new settings to settings.in to better control build process. Removed some unneeded JYFIXMEs from source code. ------------------------------------------------------------------------ r1869 | james | 2007-04-23 08:49:36 +0200 (Mon, 23 Apr 2007) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog Forgot to add changelog item about OpenVPN GUI being included in 2.1-rc3. ------------------------------------------------------------------------ r1868 | james | 2007-04-23 03:55:10 +0200 (Mon, 23 Apr 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/version.m4 Version 2.1_rc3 ------------------------------------------------------------------------ r1867 | james | 2007-04-22 10:21:16 +0200 (Sun, 22 Apr 2007) | 7 lines Changed paths: M /branches/BETA21/openvpn/config-win32.h M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/install-win32/copyinstaller A /branches/BETA21/openvpn/install-win32/m4todef.pl M /branches/BETA21/openvpn/install-win32/macro.pl M /branches/BETA21/openvpn/install-win32/makebin M /branches/BETA21/openvpn/install-win32/makeopenvpn M /branches/BETA21/openvpn/install-win32/maketap M /branches/BETA21/openvpn/install-win32/maketapinstall D /branches/BETA21/openvpn/install-win32/nsitran.pl M /branches/BETA21/openvpn/install-win32/openvpn.nsi A /branches/BETA21/openvpn/install-win32/settings.in M /branches/BETA21/openvpn/install-win32/signinstaller M /branches/BETA21/openvpn/install-win32/signtap A /branches/BETA21/openvpn/install-win32/trans.pl D /branches/BETA21/openvpn/install-win32/version.nsi M /branches/BETA21/openvpn/install-win32/winconfig M /branches/BETA21/openvpn/tap-win32/tapdrvr.c M /branches/BETA21/openvpn/version.m4 Version is now specified in version.m4 for both unix and windows versions. Reworked the Windows build scripting system, with settings (other than version #) specified in settings.in. Moved the native scripting grammar as defined by trans.pl away from NSIS and to something more generic. ------------------------------------------------------------------------ r1866 | james | 2007-04-22 00:19:48 +0200 (Sun, 22 Apr 2007) | 3 lines Changed paths: M /branches/BETA21/openvpn/configure.ac A /branches/BETA21/openvpn/version.m4 Moved OpenVPN version number from configure.ac to version.m4 ------------------------------------------------------------------------ r1864 | james | 2007-04-21 23:01:38 +0200 (Sat, 21 Apr 2007) | 3 lines Changed paths: M /branches/BETA21/openvpn/INSTALL-win32.txt M /branches/BETA21/openvpn/install-win32/openvpn.nsi Added a Windows README file to the installer than contains quick-start instructions. ------------------------------------------------------------------------ r1863 | james | 2007-04-21 21:58:11 +0200 (Sat, 21 Apr 2007) | 3 lines Changed paths: M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/version.nsi Added OpenVPN GUI (Mathias Sundman version) as install option in Windows installer. ------------------------------------------------------------------------ r1862 | james | 2007-04-21 20:28:59 +0200 (Sat, 21 Apr 2007) | 18 lines Changed paths: A /branches/BETA21/openvpn/easy-rsa/Windows/build-ca-pass.bat A /branches/BETA21/openvpn/easy-rsa/Windows/build-key-pass.bat A /branches/BETA21/openvpn/easy-rsa/Windows/build-key-server-pass.bat The easy-rsa directory installed by the windows installer comes with the old easy-rsa 1.0 files. (even current openvpn-2.1_rc2-install.exe) This bug is not that critical, but it is annoying that easy-rsa still creates server certificates without extended key usage per default (openssl.cnf), making the windows user wonder about error messages if the recommended "remote-cert-tls" option is used. (In this case simply copying the openssl.cnf from the 2.0 directory did the job, for regular usage the path to opensc in the newly added pkcs11 section should be changed). And if possible please add the following three files to the "Windows" directory if easy-rsa. They allow to build password protected versions of the keys (I just copied the files and remove the "-nodes" parameter). Except of build-key-server-pass.bat i think that they are vital for security (e.g. the key files are in an unencrypted directory and physical access is possible). -- Daniel Zauft ------------------------------------------------------------------------ r1861 | james | 2007-04-21 19:59:40 +0200 (Sat, 21 Apr 2007) | 7 lines Changed paths: M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/easy-rsa/2.0/Makefile Clean up configure on FreeBSD for recent autotool versions that require that all .h files have to be compiled. Also, FreeBSD install does not support GNU long options which the Makefile in easy-rsa/2.0 uses (not checked the others as we don't install those on Gentoo) -- Roy Marples ------------------------------------------------------------------------ r1853 | james | 2007-04-20 00:03:54 +0200 (Fri, 20 Apr 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/install-win32/makebin M /branches/BETA21/openvpn/install-win32/maketap M /branches/BETA21/openvpn/install-win32/maketapinstall M /branches/BETA21/openvpn/install-win32/version.nsi Use Server 2003 rather than Vista as x64 target for tap/tapinstall. ------------------------------------------------------------------------ r1851 | james | 2007-04-19 12:20:57 +0200 (Thu, 19 Apr 2007) | 3 lines Changed paths: M /branches/BETA21/openvpn/domake-win M /branches/BETA21/openvpn/install-win32/copyinstaller M /branches/BETA21/openvpn/install-win32/makebin M /branches/BETA21/openvpn/install-win32/maketap M /branches/BETA21/openvpn/install-win32/maketapinstall M /branches/BETA21/openvpn/install-win32/version.nsi M /branches/BETA21/openvpn/tap-win32/SOURCES.in M /branches/BETA21/openvpn/tap-win32/prototypes.h M /branches/BETA21/openvpn/tap-win32/tapdrvr.c Updated build system and tap driver to work with version 5600 of the Windows DDK. ------------------------------------------------------------------------ r1838 | james | 2007-04-14 12:35:25 +0200 (Sat, 14 Apr 2007) | 6 lines Changed paths: M /branches/BETA21/openvpn/install-win32/maketap M /branches/BETA21/openvpn/install-win32/maketapinstall M /branches/BETA21/openvpn/install-win32/version.nsi Added options to version.nsi that allow prebuilt amd64 tap/tapinstall to be specified. Verify that tapinstall directory exists before trying to build it. ------------------------------------------------------------------------ r1776 | james | 2007-03-16 22:39:04 +0200 (Fri, 16 Mar 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/install-win32/makebin M /branches/BETA21/openvpn/install-win32/maketapinstall M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/version.nsi Revert r1773 ------------------------------------------------------------------------ r1773 | james | 2007-03-08 11:37:45 +0200 (Thu, 08 Mar 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/install-win32/makebin M /branches/BETA21/openvpn/install-win32/maketapinstall M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/version.nsi Don't build special x64 version of tapinstall.exe ------------------------------------------------------------------------ r1764 | james | 2007-03-07 12:09:53 +0200 (Wed, 07 Mar 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/COPYING M /branches/BETA21/openvpn/tap-win32/common.h M /branches/BETA21/openvpn/tap-win32/constants.h M /branches/BETA21/openvpn/tap-win32/dhcp.c M /branches/BETA21/openvpn/tap-win32/dhcp.h M /branches/BETA21/openvpn/tap-win32/endian.h M /branches/BETA21/openvpn/tap-win32/error.c M /branches/BETA21/openvpn/tap-win32/error.h M /branches/BETA21/openvpn/tap-win32/hexdump.c M /branches/BETA21/openvpn/tap-win32/hexdump.h M /branches/BETA21/openvpn/tap-win32/instance.c M /branches/BETA21/openvpn/tap-win32/lock.h M /branches/BETA21/openvpn/tap-win32/macinfo.c M /branches/BETA21/openvpn/tap-win32/macinfo.h M /branches/BETA21/openvpn/tap-win32/mem.c M /branches/BETA21/openvpn/tap-win32/proto.h M /branches/BETA21/openvpn/tap-win32/prototypes.h M /branches/BETA21/openvpn/tap-win32/tapdrvr.c M /branches/BETA21/openvpn/tap-win32/types.h Windows TAP driver license text changes. ------------------------------------------------------------------------ r1763 | james | 2007-03-07 09:08:49 +0200 (Wed, 07 Mar 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/domake-win A /branches/BETA21/openvpn/install-win32/copyinstaller M /branches/BETA21/openvpn/install-win32/macro.pl M /branches/BETA21/openvpn/install-win32/makebin A /branches/BETA21/openvpn/install-win32/makeopenvpn M /branches/BETA21/openvpn/install-win32/maketap M /branches/BETA21/openvpn/install-win32/maketapinstall M /branches/BETA21/openvpn/install-win32/nsitran.pl M /branches/BETA21/openvpn/install-win32/signinstaller M /branches/BETA21/openvpn/install-win32/signtap M /branches/BETA21/openvpn/install-win32/version.nsi M /branches/BETA21/openvpn/install-win32/winconfig M /branches/BETA21/openvpn/makefile.w32 Cleaned up Windows build scripts. ------------------------------------------------------------------------ r1762 | james | 2007-03-06 14:06:57 +0200 (Tue, 06 Mar 2007) | 2 lines Changed paths: A /branches/BETA21/openvpn/install-win32/buildinstaller Forgot to svn add buildinstaller before last commit. ------------------------------------------------------------------------ r1761 | james | 2007-03-06 13:37:47 +0200 (Tue, 06 Mar 2007) | 4 lines Changed paths: A /branches/BETA21/openvpn/domake-win A /branches/BETA21/openvpn/install-win32/signinstaller M /branches/BETA21/openvpn/install-win32/signtap ./domake-win will now do a full build of the installer from source. ------------------------------------------------------------------------ r1760 | james | 2007-03-06 12:49:18 +0200 (Tue, 06 Mar 2007) | 7 lines Changed paths: A /branches/BETA21/openvpn/install-win32/makebin M /branches/BETA21/openvpn/install-win32/maketap A /branches/BETA21/openvpn/install-win32/maketapinstall M /branches/BETA21/openvpn/install-win32/openvpn.nsi M /branches/BETA21/openvpn/install-win32/version.nsi M /branches/BETA21/openvpn/install-win32/winconfig Added maketapinstall. Added makebin to build bin directory. Modified openvpn.nsi to read distribution files from the new locations. ------------------------------------------------------------------------ r1759 | james | 2007-03-06 11:40:31 +0200 (Tue, 06 Mar 2007) | 2 lines Changed paths: A /branches/BETA21/openvpn/install-win32/dosname.pl A /branches/BETA21/openvpn/install-win32/maketap A /branches/BETA21/openvpn/install-win32/signtap Added maketap and signtap scripts. ------------------------------------------------------------------------ r1758 | james | 2007-03-06 09:15:25 +0200 (Tue, 06 Mar 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/install-win32/version.nsi M /branches/BETA21/openvpn/install-win32/winconfig Added service configuration to install-win32/winconfig ------------------------------------------------------------------------ r1757 | james | 2007-03-06 08:48:09 +0200 (Tue, 06 Mar 2007) | 13 lines Changed paths: A /branches/BETA21/openvpn/config-win32.h (from /branches/BETA21/openvpn/config-win32.h.in:1755) D /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/configure.ac A /branches/BETA21/openvpn/install-win32/macro.pl A /branches/BETA21/openvpn/install-win32/nsitran.pl A /branches/BETA21/openvpn/install-win32/openvpn.nsi (from /branches/BETA21/openvpn/install-win32/openvpn.nsi.in:1755) D /branches/BETA21/openvpn/install-win32/openvpn.nsi.in D /branches/BETA21/openvpn/install-win32/prebuild D /branches/BETA21/openvpn/install-win32/preconfig.patch A /branches/BETA21/openvpn/install-win32/version.nsi A /branches/BETA21/openvpn/install-win32/winconfig M /branches/BETA21/openvpn/makefile.w32 D /branches/BETA21/openvpn/tap-win32/SOURCES A /branches/BETA21/openvpn/tap-win32/SOURCES.in (from /branches/BETA21/openvpn/tap-win32/SOURCES:1755) D /branches/BETA21/openvpn/tap-win32/amd64 D /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf A /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf.in (from /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf:1755) D /branches/BETA21/openvpn/tap-win32/i386/tap.cat A /branches/BETA21/openvpn/tap-win32/inf64.patch Changes to Windows build environment, to allow straightforward building directly from an svn checkout or export. install-win32/version.nsi contains high-level version info. The script install-win32/winconfig should be run initially to set up build configuration files. Then make can be executed as such: . autodefs/nsidefs.sh make -f makefile.w32 -j 2 ------------------------------------------------------------------------ r1755 | james | 2007-03-06 00:30:52 +0200 (Tue, 06 Mar 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/install-win32/openvpn.nsi.in M /branches/BETA21/openvpn/install-win32/prebuild Allow installation of TAP-Win64 ------------------------------------------------------------------------ r1754 | james | 2007-03-05 22:44:08 +0200 (Mon, 05 Mar 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/tap-win32/SOURCES M /branches/BETA21/openvpn/tap-win32/amd64/OemWin2k.inf M /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf M /branches/BETA21/openvpn/tap-win32/prototypes.h TAP driver fix for Vista x64 BSOD. ------------------------------------------------------------------------ r1753 | james | 2007-03-05 22:36:31 +0200 (Mon, 05 Mar 2007) | 3 lines Changed paths: M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/install-win32/openvpn.nsi.in M /branches/BETA21/openvpn/install-win32/prebuild Include tap.cat (TAP driver catalog file) in Windows installer. ------------------------------------------------------------------------ r1750 | james | 2007-02-28 11:50:11 +0200 (Wed, 28 Feb 2007) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac Version 2.1_rc2 released ------------------------------------------------------------------------ r1749 | james | 2007-02-28 05:57:41 +0200 (Wed, 28 Feb 2007) | 2 lines Changed paths: M /branches/BETA21/openvpn/options.c On Windows, revert to "ip-win32 dynamic" as the default. ------------------------------------------------------------------------ r1748 | james | 2007-02-28 05:49:33 +0200 (Wed, 28 Feb 2007) | 6 lines Changed paths: M /branches/BETA21/openvpn/route.c Worked around an incompatibility in the Windows Vista version of CreateIpForwardEntry as described in http://www.nynaeve.net/?p=59 This issue would cause route additions using the IP Helper API to fail on Vista. ------------------------------------------------------------------------ r1747 | james | 2007-02-28 01:51:27 +0200 (Wed, 28 Feb 2007) | 4 lines Changed paths: M /branches/BETA21/openvpn/options.c The Windows version will now use a default route-delay of 5 seconds to deal with an apparent routing table race condition on Vista. ------------------------------------------------------------------------ r1746 | james | 2007-02-28 01:29:17 +0200 (Wed, 28 Feb 2007) | 14 lines Changed paths: M /branches/BETA21/openvpn/INSTALL M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/configure.ac A /branches/BETA21/openvpn/install-win32/GetWindowsVersion.nsi M /branches/BETA21/openvpn/install-win32/openvpn.nsi.in M /branches/BETA21/openvpn/install-win32/prebuild M /branches/BETA21/openvpn/service-win32/service.patch M /branches/BETA21/openvpn/tap-win32/SOURCES M /branches/BETA21/openvpn/tap-win32/amd64/OemWin2k.inf M /branches/BETA21/openvpn/tap-win32/common.h M /branches/BETA21/openvpn/tap-win32/constants.h M /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf Renamed TAP-Win32 driver from tap0801.sys to tap0901.sys to reflect the fact that Vista has blacklisted the tap0801.sys file name due to previous compatibility issues which have now been resolved. TAP-Win32 major/minor version number is now 9/1. Windows installer will delete a previously installed tap0801.sys TAP driver before installing tap0901.sys. Added code to Windows installer to fail gracefully on 64 bit installs until 64-bit TAP driver issues can be resolved. Added code to Windows installer to fail gracefully on versions of Windows which are not explicitly supported. ------------------------------------------------------------------------ r1606 | james | 2006-12-24 12:38:56 +0200 (Sun, 24 Dec 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 --reneg-sec clarification in man page. Should be added to 2.0.x branch as well. ------------------------------------------------------------------------ r1541 | james | 2006-12-05 10:19:06 +0200 (Tue, 05 Dec 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/configure.ac Interim snapshot 2.1_rc1c ------------------------------------------------------------------------ r1494 | james | 2006-11-24 00:15:52 +0200 (Fri, 24 Nov 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/debug/valgrind-suppress updated valgrind-suppress for OpenSSL 0.9.8 ------------------------------------------------------------------------ r1493 | james | 2006-11-24 00:05:14 +0200 (Fri, 24 Nov 2006) | 12 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/openvpn.h Fixed issue where struct env_set methods that change the value of an existing name=value pair would delay the freeing of the memory held by the previous name=value pair until the underlying client instance object is closed. This could cause a server that handles long-term client connections, resulting in many periodic calls to verify_callback, to needlessly grow the env_set memory allocation until the underlying client instance object is closed. ------------------------------------------------------------------------ r1461 | james | 2006-11-13 12:54:13 +0200 (Mon, 13 Nov 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/configure.ac Interim snapshot 2.1_rc1b ------------------------------------------------------------------------ r1460 | james | 2006-11-13 12:51:35 +0200 (Mon, 13 Nov 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/install-win32/prebuild Revert TAP-Win64 binaries to tapbin64-0801 in prebuild script. ------------------------------------------------------------------------ r1459 | james | 2006-11-13 11:44:10 +0200 (Mon, 13 Nov 2006) | 11 lines Changed paths: M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h 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. ------------------------------------------------------------------------ r1458 | james | 2006-11-13 11:31:40 +0200 (Mon, 13 Nov 2006) | 14 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/openvpn.c Attempt at rational signal handling when in the management hold state. During management hold, ignore SIGUSR1/SIGHUP signals thrown with the "signal" command. Also, "signal" command will now apply remapping as specified with the --remap-usr1 option. When a signal entered using the "signal" command from a management hold is ignored, output: >HOLD:Waiting for hold release ------------------------------------------------------------------------ r1449 | james | 2006-11-10 12:22:48 +0200 (Fri, 10 Nov 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h Backed out AUTO_USERID feature introduced in r1436. ------------------------------------------------------------------------ r1447 | james | 2006-11-09 11:49:14 +0200 (Thu, 09 Nov 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h Fixed issue where OpenVPN does not apply the --txqueuelen option to persistent interfaces made with --mktun (Roy Marples). ------------------------------------------------------------------------ r1441 | james | 2006-11-08 13:10:28 +0200 (Wed, 08 Nov 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/configure.ac Interim snapshot 2.1_rc1a ------------------------------------------------------------------------ r1440 | james | 2006-11-08 08:54:20 +0200 (Wed, 08 Nov 2006) | 4 lines Changed paths: M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/openvpn.8 Added time_ascii, time_duration, and time_unix environmental variables for plugins and callback scripts. ------------------------------------------------------------------------ r1436 | james | 2006-11-08 06:02:56 +0200 (Wed, 08 Nov 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h Added #ifdefed out AUTO_USERID feature. ------------------------------------------------------------------------ r1434 | james | 2006-11-08 03:05:19 +0200 (Wed, 08 Nov 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h PROTO_TCPv4 is never used as an index into proto_overhead, however this should be fixed. ------------------------------------------------------------------------ r1429 | james | 2006-11-02 05:01:16 +0200 (Thu, 02 Nov 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/tap-win32/tapdrvr.c Fixed typo in tapdrvr.c -- the fix is functionally cosmetic because NdisFreeSpinLock is a null macro. ------------------------------------------------------------------------ r1428 | james | 2006-11-01 23:21:01 +0200 (Wed, 01 Nov 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/socket.c SO_REUSEADDR should not be set on Windows TCP sockets because it will cause bind to succeed on port conflicts. ------------------------------------------------------------------------ r1427 | james | 2006-11-01 23:10:56 +0200 (Wed, 01 Nov 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/openvpn.c M /branches/BETA21/openvpn/sig.c M /branches/BETA21/openvpn/sig.h Prevent SIGUSR1 or SIGHUP from causing program exit from initial management hold. ------------------------------------------------------------------------ r1421 | james | 2006-11-01 06:58:01 +0200 (Wed, 01 Nov 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/plugin/auth-pam/Makefile M /branches/BETA21/openvpn/plugin/auth-pam/pamdl.c auth-pam change: link with -lpam rather than dlopen (Roy Marples). ------------------------------------------------------------------------ r1420 | james | 2006-11-01 02:07:21 +0200 (Wed, 01 Nov 2006) | 6 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/makefile.w32-vc M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/pkcs11-helper.c M /branches/BETA21/openvpn/pkcs11.c Merged Alon's branch: svn merge -r1322:1392 https://svn.openvpn.net/projects/openvpn/contrib/alon/21rc/openvpn . Version 2.1_rc1 released ------------------------------------------------------------------------ r1335 | james | 2006-10-01 14:53:33 +0200 (Sun, 01 Oct 2006) | 1 line Changed paths: M /branches/BETA21/openvpn/configure.ac Version 2.1_beta16 released ------------------------------------------------------------------------ r1328 | james | 2006-10-01 13:19:31 +0200 (Sun, 01 Oct 2006) | 5 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog D /branches/BETA21/openvpn/install-win32/openssl.bat A /branches/BETA21/openvpn/install-win32/openssl.patch M /branches/BETA21/openvpn/install-win32/prebuild For Windows build, updated OpenSSL to 0.9.7l. Added small OpenSSL patch to be applied prior to Windows build. ------------------------------------------------------------------------ r1276 | james | 2006-09-21 09:18:54 +0200 (Thu, 21 Sep 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 Documented --socket-flags and the TCP_NODELAY flag. ------------------------------------------------------------------------ r1231 | james | 2006-09-14 04:53:26 +0200 (Thu, 14 Sep 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog ChangeLog edits for r1229 and r1230. ------------------------------------------------------------------------ r1230 | james | 2006-09-14 04:42:12 +0200 (Thu, 14 Sep 2006) | 5 lines Changed paths: M /branches/BETA21/openvpn/sample-config-files/loopback-client M /branches/BETA21/openvpn/sample-config-files/loopback-server Fixed bug in loopback self-test introduced in 2.1-beta15 where self test as invoked by "make check" would not properly exit after 2 minutes (Paul Howarth). ------------------------------------------------------------------------ r1229 | james | 2006-09-14 04:18:40 +0200 (Thu, 14 Sep 2006) | 8 lines Changed paths: M /branches/BETA21/openvpn/INSTALL M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/install-win32/openvpn.nsi.in M /branches/BETA21/openvpn/install-win32/prebuild M /branches/BETA21/openvpn/tap-win32/SOURCES A /branches/BETA21/openvpn/tap-win32/amd64 (from /branches/BETA21/openvpn/tap-win32/i386:1227) M /branches/BETA21/openvpn/tap-win32/amd64/OemWin2k.inf M /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf M /branches/BETA21/openvpn/tap-win32/resource.rc M /branches/BETA21/openvpn/tap-win32/tapdrvr.c M /branches/BETA21/openvpn/tun.c TAP-Win32 fixes to run on Windows Vista. Modified installer to detect 32-bit vs. 64 bit Windows and install the correct TAP driver. TAP-Win32 version number is at 8.4. ------------------------------------------------------------------------ r1226 | james | 2006-09-12 12:10:57 +0200 (Tue, 12 Sep 2006) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/install-win32/prebuild Version 2.1_beta15 released ------------------------------------------------------------------------ r1079 | james | 2006-07-03 21:54:17 +0200 (Mon, 03 Jul 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/tun.c Comment about assertion being hit. ------------------------------------------------------------------------ r1076 | james | 2006-06-30 06:13:44 +0200 (Fri, 30 Jun 2006) | 6 lines Changed paths: M /branches/BETA21/openvpn/ssl.c Fixed bug introduced with the --port-share directive back in r893 which causes TLS soft resets (1 per hour by default) in TCP server mode to force a blockage of tunnel packets and later time-out and restart the connection. ------------------------------------------------------------------------ r1070 | james | 2006-06-29 21:33:09 +0200 (Thu, 29 Jun 2006) | 7 lines Changed paths: M /branches/BETA21/openvpn/pkcs11-helper.c M /branches/BETA21/openvpn/ssl.c pkcs11 changes: -r 1046:1053 https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21 1. Modified ssl.c to not FATAL and return to init.c so auth-retry will work. 2. Modifed pkcs11-helper.c to fix some problem with multiple providers. ------------------------------------------------------------------------ r1068 | james | 2006-06-29 20:57:21 +0200 (Thu, 29 Jun 2006) | 6 lines Changed paths: M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h Added two new management states: OPENVPN_STATE_RESOLVE -- DNS lookup */ OPENVPN_STATE_TCP_CONNECT -- Connecting to TCP server Echo management state change to log. ------------------------------------------------------------------------ r1060 | james | 2006-06-28 05:08:19 +0200 (Wed, 28 Jun 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/syshead.h Minor syshead.h change for NetBSD to allow TCP_NODELAY flag to work. ------------------------------------------------------------------------ r1050 | james | 2006-06-26 04:47:53 +0200 (Mon, 26 Jun 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/AUTHORS M /branches/BETA21/openvpn/COPYING M /branches/BETA21/openvpn/COPYRIGHT.GPL M /branches/BETA21/openvpn/INSTALL M /branches/BETA21/openvpn/INSTALL-win32.txt M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/NEWS M /branches/BETA21/openvpn/PORTS M /branches/BETA21/openvpn/README M /branches/BETA21/openvpn/acinclude.m4 M /branches/BETA21/openvpn/base64.c M /branches/BETA21/openvpn/base64.h M /branches/BETA21/openvpn/basic.h M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/circ_list.h M /branches/BETA21/openvpn/common.h M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/contrib/README M /branches/BETA21/openvpn/contrib/multilevel-init.patch M /branches/BETA21/openvpn/contrib/openvpn-fwmarkroute-1.00/README M /branches/BETA21/openvpn/contrib/openvpn-fwmarkroute-1.00/fwmarkroute.down M /branches/BETA21/openvpn/contrib/openvpn-fwmarkroute-1.00/fwmarkroute.up M /branches/BETA21/openvpn/contrib/pull-resolv-conf/client.down M /branches/BETA21/openvpn/contrib/pull-resolv-conf/client.up M /branches/BETA21/openvpn/crypto.c M /branches/BETA21/openvpn/crypto.h M /branches/BETA21/openvpn/cryptoapi.c M /branches/BETA21/openvpn/cryptoapi.h M /branches/BETA21/openvpn/debug/valgrind-suppress M /branches/BETA21/openvpn/doclean M /branches/BETA21/openvpn/easy-rsa/1.0/README M /branches/BETA21/openvpn/easy-rsa/1.0/build-ca M /branches/BETA21/openvpn/easy-rsa/1.0/build-dh M /branches/BETA21/openvpn/easy-rsa/1.0/build-inter M /branches/BETA21/openvpn/easy-rsa/1.0/build-key M /branches/BETA21/openvpn/easy-rsa/1.0/build-key-pass M /branches/BETA21/openvpn/easy-rsa/1.0/build-key-pkcs12 M /branches/BETA21/openvpn/easy-rsa/1.0/build-key-server M /branches/BETA21/openvpn/easy-rsa/1.0/build-req M /branches/BETA21/openvpn/easy-rsa/1.0/build-req-pass M /branches/BETA21/openvpn/easy-rsa/1.0/clean-all M /branches/BETA21/openvpn/easy-rsa/1.0/list-crl M /branches/BETA21/openvpn/easy-rsa/1.0/make-crl M /branches/BETA21/openvpn/easy-rsa/1.0/openssl.cnf M /branches/BETA21/openvpn/easy-rsa/1.0/revoke-crt M /branches/BETA21/openvpn/easy-rsa/1.0/revoke-full M /branches/BETA21/openvpn/easy-rsa/1.0/sign-req M /branches/BETA21/openvpn/easy-rsa/1.0/vars M /branches/BETA21/openvpn/easy-rsa/Windows/README.txt M /branches/BETA21/openvpn/easy-rsa/Windows/build-ca.bat M /branches/BETA21/openvpn/easy-rsa/Windows/build-dh.bat M /branches/BETA21/openvpn/easy-rsa/Windows/build-key-pkcs12.bat M /branches/BETA21/openvpn/easy-rsa/Windows/build-key-server.bat M /branches/BETA21/openvpn/easy-rsa/Windows/build-key.bat M /branches/BETA21/openvpn/easy-rsa/Windows/clean-all.bat M /branches/BETA21/openvpn/easy-rsa/Windows/index.txt.start M /branches/BETA21/openvpn/easy-rsa/Windows/init-config.bat M /branches/BETA21/openvpn/easy-rsa/Windows/revoke-full.bat M /branches/BETA21/openvpn/easy-rsa/Windows/serial.start M /branches/BETA21/openvpn/easy-rsa/Windows/vars.bat.sample M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/error.c M /branches/BETA21/openvpn/error.h M /branches/BETA21/openvpn/event.c M /branches/BETA21/openvpn/event.h M /branches/BETA21/openvpn/fdmisc.c M /branches/BETA21/openvpn/fdmisc.h M /branches/BETA21/openvpn/forward-inline.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/forward.h M /branches/BETA21/openvpn/fragment.c M /branches/BETA21/openvpn/fragment.h M /branches/BETA21/openvpn/gentoo/openvpn.init M /branches/BETA21/openvpn/gremlin.c M /branches/BETA21/openvpn/gremlin.h M /branches/BETA21/openvpn/helper.c M /branches/BETA21/openvpn/helper.h M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/init.h M /branches/BETA21/openvpn/install-win32/buildopensslpath.bat M /branches/BETA21/openvpn/install-win32/openssl.bat M /branches/BETA21/openvpn/install-win32/openvpn.nsi.in M /branches/BETA21/openvpn/install-win32/prebuild M /branches/BETA21/openvpn/install-win32/sample.ovpn M /branches/BETA21/openvpn/install-win32/setpath.nsi M /branches/BETA21/openvpn/install-win32/u2d.c M /branches/BETA21/openvpn/integer.h M /branches/BETA21/openvpn/interval.c M /branches/BETA21/openvpn/interval.h M /branches/BETA21/openvpn/list.c M /branches/BETA21/openvpn/list.h M /branches/BETA21/openvpn/lzo.c M /branches/BETA21/openvpn/lzo.h M /branches/BETA21/openvpn/makefile.w32 M /branches/BETA21/openvpn/makefile.w32-vc M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/management/management-notes.txt M /branches/BETA21/openvpn/mbuf.c M /branches/BETA21/openvpn/mbuf.h M /branches/BETA21/openvpn/memcmp.c M /branches/BETA21/openvpn/memdbg.h M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/mroute.c M /branches/BETA21/openvpn/mroute.h M /branches/BETA21/openvpn/mss.c M /branches/BETA21/openvpn/mss.h M /branches/BETA21/openvpn/mtcp.c M /branches/BETA21/openvpn/mtcp.h M /branches/BETA21/openvpn/mtu.c M /branches/BETA21/openvpn/mtu.h M /branches/BETA21/openvpn/mudp.c M /branches/BETA21/openvpn/mudp.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/multi.h M /branches/BETA21/openvpn/ntlm.c M /branches/BETA21/openvpn/ntlm.h M /branches/BETA21/openvpn/occ-inline.h M /branches/BETA21/openvpn/occ.c M /branches/BETA21/openvpn/occ.h M /branches/BETA21/openvpn/openvpn-plugin.h M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/openvpn.c M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/openvpn.spec.in M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/otime.c M /branches/BETA21/openvpn/otime.h M /branches/BETA21/openvpn/packet_id.c M /branches/BETA21/openvpn/packet_id.h M /branches/BETA21/openvpn/perf.c M /branches/BETA21/openvpn/perf.h M /branches/BETA21/openvpn/ping-inline.h M /branches/BETA21/openvpn/ping.c M /branches/BETA21/openvpn/ping.h M /branches/BETA21/openvpn/plugin/README M /branches/BETA21/openvpn/plugin/auth-pam/Makefile M /branches/BETA21/openvpn/plugin/auth-pam/README M /branches/BETA21/openvpn/plugin/auth-pam/auth-pam.c M /branches/BETA21/openvpn/plugin/auth-pam/pamdl.c M /branches/BETA21/openvpn/plugin/auth-pam/pamdl.h M /branches/BETA21/openvpn/plugin/down-root/Makefile M /branches/BETA21/openvpn/plugin/down-root/README M /branches/BETA21/openvpn/plugin/down-root/down-root.c M /branches/BETA21/openvpn/plugin/examples/README M /branches/BETA21/openvpn/plugin/examples/build M /branches/BETA21/openvpn/plugin/examples/simple.c M /branches/BETA21/openvpn/plugin/examples/simple.def M /branches/BETA21/openvpn/plugin/examples/winbuild M /branches/BETA21/openvpn/plugin.c M /branches/BETA21/openvpn/plugin.h M /branches/BETA21/openvpn/pool.c M /branches/BETA21/openvpn/pool.h M /branches/BETA21/openvpn/proto.c M /branches/BETA21/openvpn/proto.h M /branches/BETA21/openvpn/proxy.c M /branches/BETA21/openvpn/proxy.h M /branches/BETA21/openvpn/push.c M /branches/BETA21/openvpn/push.h M /branches/BETA21/openvpn/reliable.c M /branches/BETA21/openvpn/reliable.h M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h M /branches/BETA21/openvpn/sample-config-files/README M /branches/BETA21/openvpn/sample-config-files/client.conf M /branches/BETA21/openvpn/sample-config-files/firewall.sh M /branches/BETA21/openvpn/sample-config-files/home.up M /branches/BETA21/openvpn/sample-config-files/loopback-client M /branches/BETA21/openvpn/sample-config-files/loopback-server M /branches/BETA21/openvpn/sample-config-files/office.up M /branches/BETA21/openvpn/sample-config-files/openvpn-shutdown.sh M /branches/BETA21/openvpn/sample-config-files/openvpn-startup.sh M /branches/BETA21/openvpn/sample-config-files/server.conf M /branches/BETA21/openvpn/sample-config-files/static-home.conf M /branches/BETA21/openvpn/sample-config-files/static-office.conf M /branches/BETA21/openvpn/sample-config-files/tls-home.conf M /branches/BETA21/openvpn/sample-config-files/tls-office.conf M /branches/BETA21/openvpn/sample-config-files/xinetd-client-config M /branches/BETA21/openvpn/sample-config-files/xinetd-server-config M /branches/BETA21/openvpn/sample-keys/README M /branches/BETA21/openvpn/sample-keys/ca.crt M /branches/BETA21/openvpn/sample-keys/ca.key M /branches/BETA21/openvpn/sample-keys/client.crt M /branches/BETA21/openvpn/sample-keys/client.key M /branches/BETA21/openvpn/sample-keys/dh1024.pem M /branches/BETA21/openvpn/sample-keys/pass.crt M /branches/BETA21/openvpn/sample-keys/pass.key M /branches/BETA21/openvpn/sample-keys/server.crt M /branches/BETA21/openvpn/sample-keys/server.key M /branches/BETA21/openvpn/sample-scripts/auth-pam.pl M /branches/BETA21/openvpn/sample-scripts/bridge-start M /branches/BETA21/openvpn/sample-scripts/bridge-stop M /branches/BETA21/openvpn/sample-scripts/openvpn.init M /branches/BETA21/openvpn/sample-scripts/verify-cn M /branches/BETA21/openvpn/schedule.c M /branches/BETA21/openvpn/schedule.h M /branches/BETA21/openvpn/service-win32/Makefile M /branches/BETA21/openvpn/service-win32/mkpatch M /branches/BETA21/openvpn/service-win32/openvpnserv.c M /branches/BETA21/openvpn/service-win32/service.patch M /branches/BETA21/openvpn/session_id.c M /branches/BETA21/openvpn/session_id.h M /branches/BETA21/openvpn/shaper.c M /branches/BETA21/openvpn/shaper.h M /branches/BETA21/openvpn/sig.c M /branches/BETA21/openvpn/sig.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/socks.c M /branches/BETA21/openvpn/socks.h M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h M /branches/BETA21/openvpn/status.c M /branches/BETA21/openvpn/status.h M /branches/BETA21/openvpn/suse/openvpn.init M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/t_cltsrv.sh M /branches/BETA21/openvpn/t_lpback.sh M /branches/BETA21/openvpn/tap-win32/MAKEFILE M /branches/BETA21/openvpn/tap-win32/SOURCES M /branches/BETA21/openvpn/tap-win32/common.h M /branches/BETA21/openvpn/tap-win32/constants.h M /branches/BETA21/openvpn/tap-win32/dhcp.c M /branches/BETA21/openvpn/tap-win32/dhcp.h M /branches/BETA21/openvpn/tap-win32/endian.h M /branches/BETA21/openvpn/tap-win32/error.c M /branches/BETA21/openvpn/tap-win32/error.h M /branches/BETA21/openvpn/tap-win32/hexdump.c M /branches/BETA21/openvpn/tap-win32/hexdump.h M /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf M /branches/BETA21/openvpn/tap-win32/i386/tap.cat M /branches/BETA21/openvpn/tap-win32/instance.c M /branches/BETA21/openvpn/tap-win32/lock.h M /branches/BETA21/openvpn/tap-win32/macinfo.c M /branches/BETA21/openvpn/tap-win32/macinfo.h M /branches/BETA21/openvpn/tap-win32/mem.c M /branches/BETA21/openvpn/tap-win32/proto.h M /branches/BETA21/openvpn/tap-win32/prototypes.h M /branches/BETA21/openvpn/tap-win32/resource.rc M /branches/BETA21/openvpn/tap-win32/tapdrvr.c M /branches/BETA21/openvpn/tap-win32/types.h M /branches/BETA21/openvpn/thread.c M /branches/BETA21/openvpn/thread.h M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h M /branches/BETA21/openvpn/win32.c M /branches/BETA21/openvpn/win32.h Removed 'keywords' propset from everything except ChangeLog. ------------------------------------------------------------------------ r1048 | james | 2006-06-26 03:35:18 +0200 (Mon, 26 Jun 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/ieproxy.c M /branches/BETA21/openvpn/ieproxy.h M /branches/BETA21/openvpn/win32.c M /branches/BETA21/openvpn/win32.h Removed spurious executable propset from several source files. ------------------------------------------------------------------------ r1041 | james | 2006-06-24 10:10:10 +0200 (Sat, 24 Jun 2006) | 4 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/ps.c Modified --port-share code to remove the assumption that CMSG_SPACE always evaluates to a constant, to enable compilation on NetBSD and possibly other BSDs as well. ------------------------------------------------------------------------ r1040 | james | 2006-06-24 10:04:42 +0200 (Sat, 24 Jun 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/crypto.c M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/pkcs11-helper.c M /branches/BETA21/openvpn/syshead.h M /branches/BETA21/openvpn/tun.c Eliminated gcc 3.3.3 warnings on NetBSD when ./configure --enable-strict is used. ------------------------------------------------------------------------ r1038 | james | 2006-06-13 19:02:28 +0200 (Tue, 13 Jun 2006) | 11 lines Changed paths: M /branches/BETA21/openvpn/lladdr.c M /branches/BETA21/openvpn/makefile.w32-vc M /branches/BETA21/openvpn/pkcs11-helper.c M /branches/BETA21/openvpn/pkcs11-helper.h M /branches/BETA21/openvpn/pkcs11.c -r 1026:1032 https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21/openvpn Changes: 1. Updated makefile.w32-vc to include lladdr.*, updated linkage libraries. 2. Modified lladdr.c to be compiled under visual C. 3. Added retry counter to PKCS#11 PIN hook. 4. Modified PKCS#11 PIN retry loop to return correct error code when PIN is incorrect. ------------------------------------------------------------------------ r1036 | james | 2006-06-11 06:22:11 +0200 (Sun, 11 Jun 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/forward-inline.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h Added optional minimum-number-of-bytes parameter to --inactive directive. ------------------------------------------------------------------------ r1033 | james | 2006-06-11 05:56:52 +0200 (Sun, 11 Jun 2006) | 11 lines Changed paths: A /branches/BETA21/openvpn/easy-rsa/2.0/Makefile (from /contrib/alon/BETA21/openvpn/easy-rsa/2.0/Makefile:1025) M /branches/BETA21/openvpn/pkcs11-helper.c M /branches/BETA21/openvpn/pkcs11-helper.h A few more updates: -r 1015:1025 https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21 Changes: 1. Fix handling (ignoring) zero sized attributes. 2. Fix gcc-2 issues. 3. Fix openssl 0.9.6 (first version) issues. 4. easy-rsa Makefile (install) is now available so that distribs will be able to install it safely. ------------------------------------------------------------------------ r1024 | james | 2006-05-11 18:21:33 +0200 (Thu, 11 May 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac Added credit for CAN-2005-2532. ------------------------------------------------------------------------ r1013 | james | 2006-04-13 23:46:40 +0200 (Thu, 13 Apr 2006) | 1 line Changed paths: M /branches/BETA21/openvpn/configure.ac Version 2.1_beta14 released ------------------------------------------------------------------------ r1012 | james | 2006-04-13 23:09:04 +0200 (Thu, 13 Apr 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/init.c A /branches/BETA21/openvpn/lladdr.c A /branches/BETA21/openvpn/lladdr.h M /branches/BETA21/openvpn/makefile.w32 M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h Added --lladdr option to specify the link layer (MAC) address for the tap interface on non-Windows platforms (Roy Marples). ------------------------------------------------------------------------ r1011 | james | 2006-04-13 22:40:39 +0200 (Thu, 13 Apr 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h Added --route-metric option to set a default route metric for --route (Roy Marples). ------------------------------------------------------------------------ r1010 | james | 2006-04-13 22:11:26 +0200 (Thu, 13 Apr 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/configure.ac Version number increment. ------------------------------------------------------------------------ r1009 | james | 2006-04-13 22:08:47 +0200 (Thu, 13 Apr 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog ChangeLog edits. ------------------------------------------------------------------------ r1008 | james | 2006-04-13 22:02:27 +0200 (Thu, 13 Apr 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/otime.c M /branches/BETA21/openvpn/otime.h M /branches/BETA21/openvpn/syshead.h Re-added backtrack handling code. ------------------------------------------------------------------------ r1006 | james | 2006-04-13 12:20:43 +0200 (Thu, 13 Apr 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/easy-rsa/2.0/README M /branches/BETA21/openvpn/easy-rsa/2.0/build-dh M /branches/BETA21/openvpn/easy-rsa/2.0/list-crl A /branches/BETA21/openvpn/easy-rsa/2.0/openssl-0.9.6.cnf (from /contrib/alon/easy-rsa/2.0/openssl-0.9.6.cnf:998) M /branches/BETA21/openvpn/easy-rsa/2.0/openssl.cnf M /branches/BETA21/openvpn/easy-rsa/2.0/pkitool M /branches/BETA21/openvpn/easy-rsa/2.0/revoke-full M /branches/BETA21/openvpn/easy-rsa/2.0/vars A /branches/BETA21/openvpn/easy-rsa/2.0/whichopensslcnf (from /contrib/alon/easy-rsa/2.0/whichopensslcnf:998) Merged PKCS#11 extensions to easy-rsa/2.0 (Alon Bar-Lev). svn merge -r 995:998 https://svn.openvpn.net/projects/openvpn/contrib/alon/easy-rsa ------------------------------------------------------------------------ r1005 | james | 2006-04-13 11:48:11 +0200 (Thu, 13 Apr 2006) | 6 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/otime.c M /branches/BETA21/openvpn/otime.h M /branches/BETA21/openvpn/syshead.h Temporarily backed out time backtrack handling code due to issues on Windows. Rewrote gettimeofday function for Windows to be simpler and more efficient. ------------------------------------------------------------------------ r1004 | james | 2006-04-12 11:48:15 +0200 (Wed, 12 Apr 2006) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac Version 2.1_beta13 released ------------------------------------------------------------------------ r1002 | james | 2006-04-12 11:26:10 +0200 (Wed, 12 Apr 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/common.h M /branches/BETA21/openvpn/syshead.h svn merge -r 999:1000 $SO/trunk/openvpn . (Fixed 64-bit counter bug on Windows) ------------------------------------------------------------------------ r1001 | james | 2006-04-12 11:25:14 +0200 (Wed, 12 Apr 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog Added credit and CVE number to security vulnerability fix in 2.0.6. ------------------------------------------------------------------------ r993 | james | 2006-04-05 10:31:23 +0200 (Wed, 05 Apr 2006) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac Version 2.1_beta12 released ------------------------------------------------------------------------ r991 | james | 2006-04-05 09:30:04 +0200 (Wed, 05 Apr 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/t_cltsrv.sh M /branches/BETA21/openvpn/tun.c svn merge -r 886:987 $SO/trunk/openvpn . ------------------------------------------------------------------------ r990 | james | 2006-04-05 09:17:02 +0200 (Wed, 05 Apr 2006) | 29 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/pkcs11-helper-config.h M /branches/BETA21/openvpn/pkcs11-helper.c M /branches/BETA21/openvpn/pkcs11-helper.h M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h M /branches/BETA21/openvpn/ssl.c I've recently worked on a better version of pkcs11-helper. I've also merged it into QCA (Qt Cryptographic Architecture), so that KDE 4 will finally be able to use smartcards. The changes allows the following features: 1. Thread safe, is activated if USE_PTHREAD. 2. Slot event - Will allow us in the future to disconnect VPN when smartcard is removed. In order to support this OpenVPN must support threading... At least SIGUSR1 from a different thread. Threading should be supported in both Windows and Linux. -- currently disabled. When I talk about threading support it is just support in configuration script and that the method that SIGUSR1 self can be called from a different thread. I already handle the monitor threads. 3. Certificate enumeration - Will allow us to finally have one configuration file for all users! When you add the plugin GUI stuff you talked about, we will be able to display a list of available certificates for the user to select. -- currently disabled. 4. Data object manipulation - Will allow us to store tls-auth on the smartcard as well. -- currently disabled. 5. Many other minor improvements. Alon Bar-Lev ------------------------------------------------------------------------ r989 | james | 2006-04-05 08:57:31 +0200 (Wed, 05 Apr 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 Added man page entry for --setenv-safe. ------------------------------------------------------------------------ r986 | james | 2006-04-05 08:28:19 +0200 (Wed, 05 Apr 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/tun.c "topology subnet" fix for FreeBSD (Benoit Bourdin). ------------------------------------------------------------------------ r983 | james | 2006-04-05 08:01:08 +0200 (Wed, 05 Apr 2006) | 21 lines Changed paths: M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/options.c Security Vulnerability -- An OpenVPN client connecting to a malicious or compromised server could potentially receive "setenv" configuration directives from the server which could cause arbitrary code execution on the client via a LD_PRELOAD attack. A successful attack appears to require that (a) the client has agreed to allow the server to push configuration directives to it by including "pull" or the macro "client" in its configuration file, (b) the client configuration file uses a scripting directive such as "up" or "down", (c) the client succesfully authenticates the server, (d) the server is malicious or has been compromised and is under the control of the attacker, and (e) the attacker has at least some level of pre-existing control over files on the client (this might be accomplished by having the server respond to a client web request with a specially crafted file). The fix is to disallow "setenv" to be pushed to clients from the server, and to add a new directive "setenv-safe" which is pushable from the server, but which appends "OPENVPN_" to the name of each remotely set environmental variable. ------------------------------------------------------------------------ r905 | james | 2006-02-23 15:14:55 +0200 (Thu, 23 Feb 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/ps.c Minor fixes for gcc (GCC) 4.0.2 warnings. ------------------------------------------------------------------------ r904 | james | 2006-02-19 14:17:59 +0200 (Sun, 19 Feb 2006) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/ps.c Version 2.1_beta11 released ------------------------------------------------------------------------ r903 | james | 2006-02-19 00:40:55 +0200 (Sun, 19 Feb 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/ps.c Port share proxy bug fixes. ------------------------------------------------------------------------ r902 | james | 2006-02-18 18:35:21 +0200 (Sat, 18 Feb 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/ps.c ps.c debug code ------------------------------------------------------------------------ r901 | james | 2006-02-18 12:33:41 +0200 (Sat, 18 Feb 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/ps.c Added comments to ps.c (port share proxy code). ------------------------------------------------------------------------ r899 | james | 2006-02-17 09:43:32 +0200 (Fri, 17 Feb 2006) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h Version 2.1_beta10 released ------------------------------------------------------------------------ r896 | james | 2006-02-16 20:35:22 +0200 (Thu, 16 Feb 2006) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac Version 2.1_beta9 released ------------------------------------------------------------------------ r894 | james | 2006-02-16 20:17:32 +0200 (Thu, 16 Feb 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c svn merge -r 888:889 https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21 21 ------------------------------------------------------------------------ r893 | james | 2006-02-16 20:12:24 +0200 (Thu, 16 Feb 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/error.c M /branches/BETA21/openvpn/error.h M /branches/BETA21/openvpn/event.h M /branches/BETA21/openvpn/fdmisc.c M /branches/BETA21/openvpn/fdmisc.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/openvpn.c M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h A /branches/BETA21/openvpn/ps.c A /branches/BETA21/openvpn/ps.h M /branches/BETA21/openvpn/reliable.c M /branches/BETA21/openvpn/reliable.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h M /branches/BETA21/openvpn/syshead.h Added --port-share option for allowing OpenVPN and HTTPS server to share the same port number. ------------------------------------------------------------------------ r887 | james | 2006-02-10 12:01:46 +0200 (Fri, 10 Feb 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h Added "bytecount" command to management interface. ------------------------------------------------------------------------ r885 | james | 2006-02-03 11:04:52 +0200 (Fri, 03 Feb 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/error.c M /branches/BETA21/openvpn/error.h M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/service-win32/service.patch Added feature to --management-client to confirm connection by writing IP addr and port to a file. ------------------------------------------------------------------------ r884 | james | 2006-01-23 16:08:27 +0200 (Mon, 23 Jan 2006) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/sig.c M /branches/BETA21/openvpn/sig.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h Added --management-client option to connect as a client to management GUI app rather than be connected to as a server. ------------------------------------------------------------------------ r882 | james | 2006-01-14 23:12:22 +0200 (Sat, 14 Jan 2006) | 4 lines Changed paths: M /branches/BETA21/openvpn/pkcs11-helper.c pkcs11 fixes. svn merge -r 879:881 https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21/openvpn . ------------------------------------------------------------------------ r877 | james | 2006-01-07 05:21:49 +0200 (Sat, 07 Jan 2006) | 8 lines Changed paths: M /branches/BETA21/openvpn/crypto.c M /branches/BETA21/openvpn/easy-rsa/2.0/README M /branches/BETA21/openvpn/makefile.w32-vc M /branches/BETA21/openvpn/sample-config-files/server.conf Small fixes: * Fixed variable declaration in crypto.c that is not at the head of a block. * Added library to Visual C makefile. * In server.conf config sample, add additional comment text on "dev tap" usage. * Added some short documentation on revoke-full script. ------------------------------------------------------------------------ r874 | james | 2006-01-03 11:46:04 +0200 (Tue, 03 Jan 2006) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac Version 2.1_beta8 released ------------------------------------------------------------------------ r872 | james | 2006-01-03 05:03:24 +0200 (Tue, 03 Jan 2006) | 2 lines Changed paths: M /branches/BETA21/openvpn/configure.ac incremented version number to 2.1_beta7b ------------------------------------------------------------------------ r866 | james | 2005-12-30 06:44:42 +0200 (Fri, 30 Dec 2005) | 3 lines Changed paths: A /branches/BETA21/openvpn/install-win32/preconfig.patch Added patch to modify openvpn.nsi for building a turnkey installer. ------------------------------------------------------------------------ r865 | james | 2005-12-29 09:47:47 +0200 (Thu, 29 Dec 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/crypto.c M /branches/BETA21/openvpn/crypto.h M /branches/BETA21/openvpn/init.c Fixed bug with tls-auth and key-direction parameter which was introduced in r844. ------------------------------------------------------------------------ r864 | james | 2005-12-29 04:13:30 +0200 (Thu, 29 Dec 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/INSTALL svn merge -r 854:863 $SO/trunk/openvpn ------------------------------------------------------------------------ r862 | james | 2005-12-28 08:58:19 +0200 (Wed, 28 Dec 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/openvpn-plugin.h M /branches/BETA21/openvpn/plugin.c M /branches/BETA21/openvpn/ssl.c Added OPENVPN_PLUGIN_TLS_FINAL plugin callback. ------------------------------------------------------------------------ r861 | james | 2005-12-23 19:34:46 +0200 (Fri, 23 Dec 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog Minor ChangeLog edit. ------------------------------------------------------------------------ r860 | james | 2005-12-23 19:29:22 +0200 (Fri, 23 Dec 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/init.c Some PKCS11-related code wasn't properly #ifdefed. ------------------------------------------------------------------------ r859 | james | 2005-12-22 21:50:48 +0200 (Thu, 22 Dec 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c Man page and usage message changes to reflect --ip-win32 adaptive and --route-method adaptive. ------------------------------------------------------------------------ r858 | james | 2005-12-22 20:55:49 +0200 (Thu, 22 Dec 2005) | 5 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h Added new option --route-method adaptive (Win32) which tries IP helper API first, then falls back to route.exe. Made --route-method adaptive the default. ------------------------------------------------------------------------ r857 | james | 2005-12-22 20:09:40 +0200 (Thu, 22 Dec 2005) | 5 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h --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. ------------------------------------------------------------------------ r856 | james | 2005-12-18 00:23:28 +0200 (Sun, 18 Dec 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/misc.c Fixed bug in automatic Win32 PATH setting code. ------------------------------------------------------------------------ r855 | james | 2005-12-14 03:09:11 +0200 (Wed, 14 Dec 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/helper.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/pool.c M /branches/BETA21/openvpn/pool.h M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h svn merge -r 845:854 $SO/trunk/openvpn . ------------------------------------------------------------------------ r853 | james | 2005-12-13 21:41:07 +0200 (Tue, 13 Dec 2005) | 5 lines Changed paths: M /branches/BETA21/openvpn/init.c Don't warn user if he uses user/group/chroot and did not specify persist-key but uses PKCS#11. svn merge -r 847:848 https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21/openvpn . ------------------------------------------------------------------------ r850 | james | 2005-12-12 21:46:10 +0200 (Mon, 12 Dec 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/base64.c M /branches/BETA21/openvpn/base64.h M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/makefile.w32 M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/proxy.c M /branches/BETA21/openvpn/proxy.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socks.c M /branches/BETA21/openvpn/socks.h M /branches/BETA21/openvpn/syshead.h Added --auto-proxy directive to auto-detect HTTP or SOCKS proxy settings (currently Windows only). ------------------------------------------------------------------------ r846 | james | 2005-12-09 01:10:22 +0200 (Fri, 09 Dec 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/Makefile.am A /branches/BETA21/openvpn/ieproxy.c A /branches/BETA21/openvpn/ieproxy.h M /branches/BETA21/openvpn/makefile.w32 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/proxy.c M /branches/BETA21/openvpn/proxy.h M /branches/BETA21/openvpn/syshead.h First attempt at automatic proxy detection, Windows-only at this point. Proxy settings are taken from IE. ------------------------------------------------------------------------ r844 | james | 2005-12-08 20:29:38 +0200 (Thu, 08 Dec 2005) | 7 lines Changed paths: M /branches/BETA21/openvpn/common.h M /branches/BETA21/openvpn/crypto.c M /branches/BETA21/openvpn/crypto.h M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h Inline file capability now works for --secret and --tls-auth. For example: [ascii key data] ------------------------------------------------------------------------ r843 | james | 2005-12-08 17:36:27 +0200 (Thu, 08 Dec 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/misc.c Fixed some gcc 4 warnings in misc.c. ------------------------------------------------------------------------ r833 | james | 2005-12-05 06:00:00 +0200 (Mon, 05 Dec 2005) | 5 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/options.h Fixed segfault that occurred if remote_cert_eku is undefined and no server certificate verification method was enabled. Don't declare pkcs11 variables in struct options unless pkcs11 support is enabled. ------------------------------------------------------------------------ r832 | james | 2005-12-05 03:21:49 +0200 (Mon, 05 Dec 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h M /branches/BETA21/openvpn/tun.c Patch to support --topology subnet on Mac OS X (Mathias Sundman). ------------------------------------------------------------------------ r828 | james | 2005-11-28 07:50:52 +0200 (Mon, 28 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/acinclude.m4 M /branches/BETA21/openvpn/lzo.c M /branches/BETA21/openvpn/manage.c svn merge -r 780:820 $SO/trunk/openvpn . ------------------------------------------------------------------------ r827 | james | 2005-11-28 07:09:54 +0200 (Mon, 28 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/init.c svn merge -r 823:825 $SO/contrib/alon/BETA21/openvpn . ------------------------------------------------------------------------ r826 | james | 2005-11-28 06:59:19 +0200 (Mon, 28 Nov 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/socket.c Modified nonblocking connect code so that this works as it should: ./openvpn --dev tap --proto tcp-client --verb 4 --remote [Black-Hole-IP-Addr] --connect-retry-max 1 --remap-usr1 SIGTERM ------------------------------------------------------------------------ r823 | james | 2005-11-25 02:05:56 +0200 (Fri, 25 Nov 2005) | 5 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/syshead.h Added --connect-timeout option to control the timeout on TCP client connection attempts (doesn't work on all OSes). This patch also makes OpenVPN signalable during TCP connection attempts. ------------------------------------------------------------------------ r822 | james | 2005-11-24 20:44:57 +0200 (Thu, 24 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/init.c --remap-usr1 will now also remap signals thrown during initialization. ------------------------------------------------------------------------ r821 | james | 2005-11-24 20:25:38 +0200 (Thu, 24 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 Fixed minor man page formatting issue. ------------------------------------------------------------------------ r816 | james | 2005-11-19 03:48:58 +0200 (Sat, 19 Nov 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/pkcs11-helper.c Merged PKCS11 changes from Alon: svn merge -r 813:814 $SO/contrib/alon/BETA21/openvpn . ------------------------------------------------------------------------ r806 | james | 2005-11-13 03:35:45 +0200 (Sun, 13 Nov 2005) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog Version 2.1_beta7 released ------------------------------------------------------------------------ r805 | james | 2005-11-13 01:11:18 +0200 (Sun, 13 Nov 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/options.c For Windows, set ip-win32 default back to dynamic. To use new adaptive mode, set explicitly. ------------------------------------------------------------------------ r804 | james | 2005-11-13 01:06:53 +0200 (Sun, 13 Nov 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/pkcs11-helper-config.h M /branches/BETA21/openvpn/pkcs11-helper.c PKCS#11 fixes to interact with new backtrack-hardened openvpn_time function. svn merge -r 802:803 $SO/contrib/alon/BETA21/openvpn . ------------------------------------------------------------------------ r799 | james | 2005-11-12 12:59:41 +0200 (Sat, 12 Nov 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/interval.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/multi.h M /branches/BETA21/openvpn/otime.c M /branches/BETA21/openvpn/otime.h M /branches/BETA21/openvpn/pkcs11-helper.c M /branches/BETA21/openvpn/shaper.h M /branches/BETA21/openvpn/syshead.h Reduce sensitivity to system clock instability and backtracks. ------------------------------------------------------------------------ r798 | james | 2005-11-12 10:36:00 +0200 (Sat, 12 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c Fixed minor typos in --remote-cert-* documentation. ------------------------------------------------------------------------ r797 | james | 2005-11-12 10:26:57 +0200 (Sat, 12 Nov 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/easy-rsa/2.0/openssl.cnf M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h Merged --remote-cert-ku, --remote-cert-eku, and --remote-cert-tls from Alon's branch: svn merge -r 793:796 $SO/contrib/alon/BETA21/openvpn . ------------------------------------------------------------------------ r790 | james | 2005-11-09 23:13:57 +0200 (Wed, 09 Nov 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/otime.c M /branches/BETA21/openvpn/otime.h Backed out change to update_time to handle time backtracks. Will reimplement as a more comprehensive patch. ------------------------------------------------------------------------ r789 | james | 2005-11-09 12:03:50 +0200 (Wed, 09 Nov 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/otime.c M /branches/BETA21/openvpn/otime.h Fixed update_time to use a better algorithm for preventing time backtracks even if the system clock backtracks. ------------------------------------------------------------------------ r787 | james | 2005-11-09 10:39:50 +0200 (Wed, 09 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/configure.ac updated version number to 2.1_beta7 ------------------------------------------------------------------------ r786 | james | 2005-11-09 10:36:26 +0200 (Wed, 09 Nov 2005) | 9 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h Merged (with some changes) Alon's connect-retry-max option from /contrib/alon/BETA21@783. Added uninit_management_callback call to init_instance_handle_signals so that signals thrown during initialization can bring us back to a management hold. ------------------------------------------------------------------------ r785 | james | 2005-11-09 09:30:14 +0200 (Wed, 09 Nov 2005) | 15 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/plugin.c M /branches/BETA21/openvpn/plugin.h M /branches/BETA21/openvpn/push.c M /branches/BETA21/openvpn/push.h Removed annoying 'i' variable from add_option. Allow plugin and push directives to have multiple parameters specified instead of only 1 quoted parameter. Allow plugin and push directives to have multi-line parameter lists, such as: my-plugin.so parm1 parm2 ------------------------------------------------------------------------ r784 | james | 2005-11-08 14:50:11 +0200 (Tue, 08 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/buffer.c M /branches/BETA21/openvpn/buffer.h M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/plugin.c M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/syshead.h Added ENABLE_INLINE_FILES feature. ------------------------------------------------------------------------ r782 | james | 2005-11-05 09:48:05 +0200 (Sat, 05 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/init.c Merged /contrib/alon/BETA21@778 ------------------------------------------------------------------------ r781 | james | 2005-11-05 09:42:33 +0200 (Sat, 05 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/common.h M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/occ.c M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/t_cltsrv.sh M /branches/BETA21/openvpn/t_lpback.sh svn merge -r 771:780 $SO/trunk/openvpn ------------------------------------------------------------------------ r773 | james | 2005-11-04 04:37:39 +0200 (Fri, 04 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/manage.c Allow blank passwords to be passed via the management interface. ------------------------------------------------------------------------ r772 | james | 2005-11-04 02:05:02 +0200 (Fri, 04 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/helper.c svn merge -r 770:771 $SO/trunk/openvpn ------------------------------------------------------------------------ r769 | james | 2005-11-03 08:49:21 +0200 (Thu, 03 Nov 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog Changelog note about Windows build being linked with LZO2. ------------------------------------------------------------------------ r768 | james | 2005-11-03 04:46:31 +0200 (Thu, 03 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c Documented --ip-win32 adaptive. ------------------------------------------------------------------------ r767 | james | 2005-11-03 03:57:37 +0200 (Thu, 03 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c Documented --route-nopull. ------------------------------------------------------------------------ r766 | james | 2005-11-03 03:43:43 +0200 (Thu, 03 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/route.c svn merge -r 760:764 $SO/trunk/openvpn ------------------------------------------------------------------------ r762 | james | 2005-11-02 21:44:41 +0200 (Wed, 02 Nov 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog ChangeLog edit ------------------------------------------------------------------------ r761 | james | 2005-11-02 21:42:51 +0200 (Wed, 02 Nov 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/install-win32/prebuild Edited prebuild to properly get the easy-rsa/1.0 version of openssl.cnf for the Windows installer. ------------------------------------------------------------------------ r757 | james | 2005-11-02 20:09:01 +0200 (Wed, 02 Nov 2005) | 3 lines Changed paths: A /branches/BETA21/openvpn/easy-rsa/2.0 A /branches/BETA21/openvpn/easy-rsa/2.0/README (from /branches/BETA21/openvpn/easy-rsa/README:756) A /branches/BETA21/openvpn/easy-rsa/2.0/build-ca (from /branches/BETA21/openvpn/easy-rsa/build-ca:756) A /branches/BETA21/openvpn/easy-rsa/2.0/build-dh (from /branches/BETA21/openvpn/easy-rsa/build-dh:756) A /branches/BETA21/openvpn/easy-rsa/2.0/build-inter (from /branches/BETA21/openvpn/easy-rsa/build-inter:756) A /branches/BETA21/openvpn/easy-rsa/2.0/build-key (from /branches/BETA21/openvpn/easy-rsa/build-key:756) A /branches/BETA21/openvpn/easy-rsa/2.0/build-key-pass (from /branches/BETA21/openvpn/easy-rsa/build-key-pass:756) A /branches/BETA21/openvpn/easy-rsa/2.0/build-key-pkcs12 (from /branches/BETA21/openvpn/easy-rsa/build-key-pkcs12:756) A /branches/BETA21/openvpn/easy-rsa/2.0/build-key-server (from /branches/BETA21/openvpn/easy-rsa/build-key-server:756) A /branches/BETA21/openvpn/easy-rsa/2.0/build-req (from /branches/BETA21/openvpn/easy-rsa/build-req:756) A /branches/BETA21/openvpn/easy-rsa/2.0/build-req-pass (from /branches/BETA21/openvpn/easy-rsa/build-req-pass:756) A /branches/BETA21/openvpn/easy-rsa/2.0/clean-all (from /branches/BETA21/openvpn/easy-rsa/clean-all:756) A /branches/BETA21/openvpn/easy-rsa/2.0/inherit-inter (from /branches/BETA21/openvpn/easy-rsa/inherit-inter:756) A /branches/BETA21/openvpn/easy-rsa/2.0/list-crl (from /branches/BETA21/openvpn/easy-rsa/list-crl:756) A /branches/BETA21/openvpn/easy-rsa/2.0/openssl.cnf (from /branches/BETA21/openvpn/easy-rsa/openssl.cnf:756) A /branches/BETA21/openvpn/easy-rsa/2.0/pkitool (from /branches/BETA21/openvpn/easy-rsa/pkitool:756) A /branches/BETA21/openvpn/easy-rsa/2.0/revoke-full (from /branches/BETA21/openvpn/easy-rsa/revoke-full:756) A /branches/BETA21/openvpn/easy-rsa/2.0/sign-req (from /branches/BETA21/openvpn/easy-rsa/sign-req:756) A /branches/BETA21/openvpn/easy-rsa/2.0/vars (from /branches/BETA21/openvpn/easy-rsa/vars:756) D /branches/BETA21/openvpn/easy-rsa/README D /branches/BETA21/openvpn/easy-rsa/build-ca D /branches/BETA21/openvpn/easy-rsa/build-dh D /branches/BETA21/openvpn/easy-rsa/build-inter D /branches/BETA21/openvpn/easy-rsa/build-key D /branches/BETA21/openvpn/easy-rsa/build-key-pass D /branches/BETA21/openvpn/easy-rsa/build-key-pkcs12 D /branches/BETA21/openvpn/easy-rsa/build-key-server D /branches/BETA21/openvpn/easy-rsa/build-req D /branches/BETA21/openvpn/easy-rsa/build-req-pass D /branches/BETA21/openvpn/easy-rsa/clean-all D /branches/BETA21/openvpn/easy-rsa/inherit-inter D /branches/BETA21/openvpn/easy-rsa/list-crl D /branches/BETA21/openvpn/easy-rsa/openssl.cnf D /branches/BETA21/openvpn/easy-rsa/pkitool D /branches/BETA21/openvpn/easy-rsa/revoke-full D /branches/BETA21/openvpn/easy-rsa/sign-req D /branches/BETA21/openvpn/easy-rsa/vars Moved easy-rsa 2.0 scripts to easy-rsa/2.0 to be compatible with 2.0.x distribution. ------------------------------------------------------------------------ r755 | james | 2005-11-02 06:14:44 +0200 (Wed, 02 Nov 2005) | 1 line Changed paths: M /branches/BETA21/openvpn/configure.ac VERSION 2.1_beta6 ------------------------------------------------------------------------ r753 | james | 2005-11-02 00:42:58 +0200 (Wed, 02 Nov 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/pkcs11-helper.c M /branches/BETA21/openvpn/pkcs11-helper.h M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h M /branches/BETA21/openvpn/ssl.c More PKCS#11 changes. Merged with https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21@752 ------------------------------------------------------------------------ r750 | james | 2005-11-01 23:05:04 +0200 (Tue, 01 Nov 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/socket.c Merged 2.0.4 changes. svn merge -r 737:749 $SO/trunk/openvpn ------------------------------------------------------------------------ r742 | james | 2005-10-31 10:23:12 +0200 (Mon, 31 Oct 2005) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog VERSION 2.1_beta5 ------------------------------------------------------------------------ r741 | james | 2005-10-31 07:35:08 +0200 (Mon, 31 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog ChangeLog edit ------------------------------------------------------------------------ r740 | james | 2005-10-31 05:49:25 +0200 (Mon, 31 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/init.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c svn merge -r 734:737 $SO/trunk/openvpn Security fixes from 2.0.3 ------------------------------------------------------------------------ r739 | james | 2005-10-31 05:01:17 +0200 (Mon, 31 Oct 2005) | 7 lines Changed paths: M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/ping.c M /branches/BETA21/openvpn/plugin.h M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h Windows reliability changes: * Added code to make sure that the local PATH environmental variable points to the Windows system32 directory. * Added new --ip-win32 adaptive mode which tries 'dynamic' and then fails over to 'netsh' if the DHCP negotiation fails. * Made --ip-win32 adaptive the default. ------------------------------------------------------------------------ r738 | james | 2005-10-31 03:58:12 +0200 (Mon, 31 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/install-win32/openssl.bat M /branches/BETA21/openvpn/install-win32/prebuild M /branches/BETA21/openvpn/makefile.w32 Changes to Windows build configuration to support lzo2 and openssl-0.9.7i. ------------------------------------------------------------------------ r732 | james | 2005-10-27 01:46:30 +0200 (Thu, 27 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/multi.c svn merge -r 672:731 $SO/trunk/openvpn Merged multi.c:1586 assertion fix attempt from trunk. ------------------------------------------------------------------------ r727 | james | 2005-10-25 23:10:28 +0200 (Tue, 25 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/pkcs11-helper.c Merge with https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21@726 More PKCS11 fixes. ------------------------------------------------------------------------ r720 | james | 2005-10-25 19:28:54 +0200 (Tue, 25 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/pkcs11-helper-config.h M /branches/BETA21/openvpn/pkcs11-helper.c Merge with https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21@719 More PKCS#11 changes. ------------------------------------------------------------------------ r717 | james | 2005-10-24 21:49:48 +0200 (Mon, 24 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ssl.c Removed #warn from ssl.c ------------------------------------------------------------------------ r713 | james | 2005-10-24 02:38:40 +0200 (Mon, 24 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/pkcs11-helper-config.h M /branches/BETA21/openvpn/pkcs11-helper.c M /branches/BETA21/openvpn/pkcs11-helper.h M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h Merge with https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21@712 (More pkcs11 changes) ------------------------------------------------------------------------ r702 | james | 2005-10-20 21:38:56 +0200 (Thu, 20 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog ChangeLog edit ------------------------------------------------------------------------ r701 | james | 2005-10-20 21:00:56 +0200 (Thu, 20 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/management/management-notes.txt M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/sig.c M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/tun.c Added actual remote address used to the ">STATE" alert in the management interface (Rolf Fokkens). ------------------------------------------------------------------------ r694 | james | 2005-10-20 12:16:41 +0200 (Thu, 20 Oct 2005) | 15 lines Changed paths: M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/management/management-notes.txt M /branches/BETA21/openvpn/misc.c Some changes to GET_USER_PASS_NEED_OK flag to get_user_pass. (1) Allow an additional longer prompt string to be passed to the management interface client, in addition to the request type string. (2) Allow the management interface client to return a string, usually "ok" or "cancel" as the third argument to "needok" command. (3) Renamed "ok" command in management interface to "needok". (4) Edited management-notes.txt to reflect new needok feature. (5) See init.c:125 for new code example. ------------------------------------------------------------------------ r693 | james | 2005-10-20 10:43:50 +0200 (Thu, 20 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog ChangeLog edit ------------------------------------------------------------------------ r692 | james | 2005-10-20 10:13:27 +0200 (Thu, 20 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/route.c Modified get_default_gateway code for Linux to return the route with the smallest metric if multiple 0.0.0.0/0.0.0.0 entries are present. ------------------------------------------------------------------------ r691 | james | 2005-10-20 09:42:01 +0200 (Thu, 20 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/route.c Modified get_default_gateway code for Windows to return the route with the smallest metric if multiple 0.0.0.0/0.0.0.0 entries are present. ------------------------------------------------------------------------ r690 | james | 2005-10-20 08:08:25 +0200 (Thu, 20 Oct 2005) | 6 lines Changed paths: M /branches/BETA21/openvpn/error.h Addition of M_NOLF to error.h means that we need to repartition the msglevel bit packing. Moved MUTE_LEVEL_SHIFT to 24, giving us (1<<16) to (1<<23) for future msg flag expansion. ------------------------------------------------------------------------ r689 | james | 2005-10-20 07:58:08 +0200 (Thu, 20 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/error.c M /branches/BETA21/openvpn/error.h M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/makefile.w32 M /branches/BETA21/openvpn/makefile.w32-vc M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/misc.h M /branches/BETA21/openvpn/options.c A /branches/BETA21/openvpn/pkcs11-helper-config.h (from /contrib/alon/BETA21/openvpn/pkcs11-helper-config.h:688) A /branches/BETA21/openvpn/pkcs11-helper.c (from /contrib/alon/BETA21/openvpn/pkcs11-helper.c:688) A /branches/BETA21/openvpn/pkcs11-helper.h (from /contrib/alon/BETA21/openvpn/pkcs11-helper.h:688) M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h M /branches/BETA21/openvpn/proxy.c M /branches/BETA21/openvpn/ssl.c Merged with Alon's r688. ------------------------------------------------------------------------ r683 | james | 2005-10-19 17:42:01 +0200 (Wed, 19 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/install-win32/prebuild Make sure that install-win32/prebuild gets the 8.3 version of the TAP-Win32 driver. ------------------------------------------------------------------------ r682 | james | 2005-10-19 17:36:14 +0200 (Wed, 19 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/errlevel.h Moved socket setting log info to --verb 3 from 4. ------------------------------------------------------------------------ r681 | james | 2005-10-19 16:10:41 +0200 (Wed, 19 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/multi.c Allow OPT_P_SOCKFLAGS to be specified in a client-specific config. ------------------------------------------------------------------------ r673 | james | 2005-10-19 09:50:13 +0200 (Wed, 19 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/multi.c svn merge -r 670:672 $SO/trunk/openvpn Brought up-to-date with 2.0.x branch. ------------------------------------------------------------------------ r665 | james | 2005-10-18 11:39:00 +0200 (Tue, 18 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 Merged with Alon's tree @ r660 ------------------------------------------------------------------------ r656 | james | 2005-10-17 15:20:21 +0200 (Mon, 17 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/openvpn.h Fixed double fork bug. Pre-2.1_beta5 ------------------------------------------------------------------------ r654 | james | 2005-10-17 15:07:52 +0200 (Mon, 17 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/pkcs11.c Brought up-to-date with Alon's PKCS11 patch at https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21/openvpn@652 Pre-2.1_beta5 ------------------------------------------------------------------------ r648 | james | 2005-10-17 09:39:41 +0200 (Mon, 17 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h M /branches/BETA21/openvpn/ssl.c Brought up-to-date with Alon's PKCS11 patch at https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21/openvpn@645 Pre-2.1_beta5 ------------------------------------------------------------------------ r641 | james | 2005-10-16 15:39:20 +0200 (Sun, 16 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/ssl.c VERSION 2.1_beta4 (re-released) --capath fix in ssl.c ------------------------------------------------------------------------ r640 | james | 2005-10-16 15:00:37 +0200 (Sun, 16 Oct 2005) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/Makefile.am VERSION 2.1_beta4 ------------------------------------------------------------------------ r638 | james | 2005-10-16 14:24:10 +0200 (Sun, 16 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/openvpn.spec.in A /branches/BETA21/openvpn/plugin (from /branches/BETA21/openvpn/plugin:602) R /branches/BETA21/openvpn/plugin/README (from /branches/BETA21/openvpn/plugin/README:602) R /branches/BETA21/openvpn/plugin/auth-pam (from /branches/BETA21/openvpn/plugin/auth-pam:602) R /branches/BETA21/openvpn/plugin/auth-pam/.svnignore (from /branches/BETA21/openvpn/plugin/auth-pam/.svnignore:602) R /branches/BETA21/openvpn/plugin/auth-pam/Makefile (from /branches/BETA21/openvpn/plugin/auth-pam/Makefile:602) R /branches/BETA21/openvpn/plugin/auth-pam/README (from /branches/BETA21/openvpn/plugin/auth-pam/README:602) R /branches/BETA21/openvpn/plugin/auth-pam/auth-pam.c (from /branches/BETA21/openvpn/plugin/auth-pam/auth-pam.c:602) R /branches/BETA21/openvpn/plugin/auth-pam/pamdl.c (from /branches/BETA21/openvpn/plugin/auth-pam/pamdl.c:602) R /branches/BETA21/openvpn/plugin/auth-pam/pamdl.h (from /branches/BETA21/openvpn/plugin/auth-pam/pamdl.h:602) R /branches/BETA21/openvpn/plugin/down-root (from /branches/BETA21/openvpn/plugin/down-root:602) R /branches/BETA21/openvpn/plugin/down-root/Makefile (from /branches/BETA21/openvpn/plugin/down-root/Makefile:602) R /branches/BETA21/openvpn/plugin/down-root/README (from /branches/BETA21/openvpn/plugin/down-root/README:602) R /branches/BETA21/openvpn/plugin/down-root/down-root.c (from /branches/BETA21/openvpn/plugin/down-root/down-root.c:602) R /branches/BETA21/openvpn/plugin/examples (from /branches/BETA21/openvpn/plugin/examples:602) R /branches/BETA21/openvpn/plugin/examples/README (from /branches/BETA21/openvpn/plugin/examples/README:602) R /branches/BETA21/openvpn/plugin/examples/build (from /branches/BETA21/openvpn/plugin/examples/build:602) R /branches/BETA21/openvpn/plugin/examples/simple.c (from /branches/BETA21/openvpn/plugin/examples/simple.c:602) R /branches/BETA21/openvpn/plugin/examples/simple.def (from /branches/BETA21/openvpn/plugin/examples/simple.def:602) R /branches/BETA21/openvpn/plugin/examples/winbuild (from /branches/BETA21/openvpn/plugin/examples/winbuild:602) D /branches/BETA21/openvpn/plugins Reverted plugin directory location. ------------------------------------------------------------------------ r637 | james | 2005-10-16 14:07:32 +0200 (Sun, 16 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog ChangeLog edit ------------------------------------------------------------------------ r635 | james | 2005-10-16 03:46:24 +0200 (Sun, 16 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h Fixed bug introduced in 2.1-beta3 where management socket bind would fail. Pre-2.1-beta4 ------------------------------------------------------------------------ r627 | james | 2005-10-15 14:51:04 +0200 (Sat, 15 Oct 2005) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog VERSION 2.1_beta3 ------------------------------------------------------------------------ r626 | james | 2005-10-15 14:14:56 +0200 (Sat, 15 Oct 2005) | 6 lines Changed paths: M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/cryptoki-win32.h M /branches/BETA21/openvpn/cryptoki.h M /branches/BETA21/openvpn/install-win32/prebuild D /branches/BETA21/openvpn/pkcs11 A /branches/BETA21/openvpn/pkcs11-headers (from /branches/BETA21/openvpn/pkcs11:621) M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h M /branches/BETA21/openvpn/syshead.h Fixed some minor build issues with PKCS11 patch: "make dist" wasn't building correct tarball. Some ./configure --enable/--disable options were broken. Renamed pkcs11 directory to pkcs11-headers to work around automake issue. ------------------------------------------------------------------------ r625 | james | 2005-10-15 12:15:45 +0200 (Sat, 15 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/tap-win32/SOURCES Changed tap-win32 version number in SOURCES to 8.3. Pre-2.1_beta3. ------------------------------------------------------------------------ r624 | james | 2005-10-15 12:01:44 +0200 (Sat, 15 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/plugin.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h Minor style cleanup for --enable-pedantic. Still need some pedantic cleanup in pkcs11.c. ------------------------------------------------------------------------ r623 | james | 2005-10-15 11:43:36 +0200 (Sat, 15 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/socket.c svn merge -r 614:615 $SO/patches/openvpn-2-1_alpha3a-tcpbind Added --bind option for TCP client connections (Ewan Bhamrah Harley). Pre-2.1-beta3 ------------------------------------------------------------------------ r622 | james | 2005-10-15 10:44:02 +0200 (Sat, 15 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/mroute.c M /branches/BETA21/openvpn/mroute.h M /branches/BETA21/openvpn/mtcp.c M /branches/BETA21/openvpn/mudp.c M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/ping-inline.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/socks.c M /branches/BETA21/openvpn/socks.h M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/ssl.h M /branches/BETA21/openvpn/syshead.h svn merge -r 618:619 $SO/patches/openvpn-2-0_rc16-mh/openvpn Merged --multihome patch + aggregated sockflags. Pre-2.1_beta3 ------------------------------------------------------------------------ r621 | james | 2005-10-15 09:21:39 +0200 (Sat, 15 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/ssl.c Merged --capath patch (Thomas Noel). svn merge -r 616:617 $SO/patches/2.0.x-r599-capath/openvpn Pre-2.1_beta3 ------------------------------------------------------------------------ r612 | james | 2005-10-15 07:07:29 +0200 (Sat, 15 Oct 2005) | 6 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/ssl.c Enable the use of --ca together with --pkcs12. If --ca is used at the same time as --pkcs12, the CA certificate is loaded from the file specified by --ca regardless if the pkcs12 file contains a CA cert or not (Mathias Sundman). Pre-2.1-beta3 ------------------------------------------------------------------------ r611 | james | 2005-10-15 06:48:36 +0200 (Sat, 15 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn M /branches/BETA21/openvpn/.svnignore added *.rej to .svnignore ------------------------------------------------------------------------ r607 | james | 2005-10-14 10:09:44 +0200 (Fri, 14 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/pkcs11.c M /branches/BETA21/openvpn/pkcs11.h Minor PKCS#11 changes. pre-2.1_beta3 ------------------------------------------------------------------------ r605 | james | 2005-10-13 12:11:14 +0200 (Thu, 13 Oct 2005) | 2 lines Changed paths: M /branches/BETA21/openvpn M /branches/BETA21/openvpn/.svnignore added *.orig to .svnignore ------------------------------------------------------------------------ r604 | james | 2005-10-13 10:38:41 +0200 (Thu, 13 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/COPYING M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/configure.ac A /branches/BETA21/openvpn/cryptoki-win32.h A /branches/BETA21/openvpn/cryptoki.h M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/install-win32/prebuild M /branches/BETA21/openvpn/makefile.w32 M /branches/BETA21/openvpn/makefile.w32-vc M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h A /branches/BETA21/openvpn/pkcs11 A /branches/BETA21/openvpn/pkcs11/pkcs11.h A /branches/BETA21/openvpn/pkcs11/pkcs11f.h A /branches/BETA21/openvpn/pkcs11/pkcs11t.h A /branches/BETA21/openvpn/pkcs11.c A /branches/BETA21/openvpn/pkcs11.h M /branches/BETA21/openvpn/ssl.c Merged PKCS#11 patch. Pre-2.1_beta3 ------------------------------------------------------------------------ r603 | james | 2005-10-13 06:08:20 +0200 (Thu, 13 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/INSTALL M /branches/BETA21/openvpn/Makefile.am M /branches/BETA21/openvpn/openvpn.spec.in D /branches/BETA21/openvpn/plugin A /branches/BETA21/openvpn/plugins (from /branches/BETA21/openvpn/plugin:590) R /branches/BETA21/openvpn/plugins/README (from /branches/BETA21/openvpn/plugin/README:602) R /branches/BETA21/openvpn/plugins/auth-pam (from /branches/BETA21/openvpn/plugin/auth-pam:602) R /branches/BETA21/openvpn/plugins/down-root (from /branches/BETA21/openvpn/plugin/down-root:602) R /branches/BETA21/openvpn/plugins/examples (from /branches/BETA21/openvpn/plugin/examples:602) Renamed plugin to plugins to work around strange automake issue. 2.1_beta2 ------------------------------------------------------------------------ r602 | james | 2005-10-13 01:25:11 +0200 (Thu, 13 Oct 2005) | 4 lines Changed paths: M /branches/BETA21/openvpn/Makefile.am Makefile.am needs to do a rm -rf on .svn directories when building tarball (make dist) because some of the files are write-protected -- 2.1_beta2 ------------------------------------------------------------------------ r601 | james | 2005-10-12 17:26:59 +0200 (Wed, 12 Oct 2005) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/configure.ac M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/socket.h M /branches/BETA21/openvpn/syshead.h version 2.1_beta2 ------------------------------------------------------------------------ r600 | james | 2005-10-12 14:04:14 +0200 (Wed, 12 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn M /branches/BETA21/openvpn/.svnignore M /branches/BETA21/openvpn/openvpn.8 svn merge -r 585:599 https://svn.openvpn.net/projects/openvpn/trunk 2.1_beta1 ------------------------------------------------------------------------ r591 | james | 2005-10-04 13:51:44 +0200 (Tue, 04 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn M /branches/BETA21/openvpn/.svnignore M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/init.h M /branches/BETA21/openvpn/openvpn-plugin.h M /branches/BETA21/openvpn/openvpn.c M /branches/BETA21/openvpn/plugin/auth-pam A /branches/BETA21/openvpn/plugin/auth-pam/.svnignore M /branches/BETA21/openvpn/plugin/auth-pam/auth-pam.c M /branches/BETA21/openvpn/plugin.c M /branches/BETA21/openvpn/plugin.h Added support for openvpn_plugin_select_initialization_point_v1 2.1_beta1 ------------------------------------------------------------------------ r590 | james | 2005-10-02 14:13:58 +0200 (Sun, 02 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn/ChangeLog Fixed version oops in ChangeLog. This version is still 2.1_beta1. ------------------------------------------------------------------------ r589 | james | 2005-10-02 13:36:19 +0200 (Sun, 02 Oct 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn M /branches/BETA21/openvpn/.svnignore M /branches/BETA21/openvpn/errlevel.h Fixed an oops -- compression debugging output was turned on. 2.1_beta1 ------------------------------------------------------------------------ r588 | james | 2005-10-02 05:41:35 +0200 (Sun, 02 Oct 2005) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/lzo.c M /branches/BETA21/openvpn/lzo.h M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/sig.c version 2.1_beta1 ------------------------------------------------------------------------ r587 | james | 2005-10-01 13:10:12 +0200 (Sat, 01 Oct 2005) | 5 lines Changed paths: M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/push.c M /branches/BETA21/openvpn/sample-config-files/loopback-client M /branches/BETA21/openvpn/sample-config-files/loopback-server M /branches/BETA21/openvpn/sample-keys/README A /branches/BETA21/openvpn/sample-keys/ca.crt (from /branches/BETA21/openvpn/sample-keys/tmp-ca.crt:585) A /branches/BETA21/openvpn/sample-keys/ca.key (from /branches/BETA21/openvpn/sample-keys/tmp-ca.key:585) D /branches/BETA21/openvpn/sample-keys/tmp-ca.crt D /branches/BETA21/openvpn/sample-keys/tmp-ca.key Renamed sample-keys/tmp-ca.crt to ca.crt. Fixed bug where remove_iroutes_from_push_route_list was missing routes if those routes had an implied netmask (by omission) of 255.255.255.255. ------------------------------------------------------------------------ r586 | james | 2005-09-27 03:05:39 +0200 (Tue, 27 Sep 2005) | 3 lines Changed paths: M /branches/BETA21/openvpn A /branches/BETA21/openvpn/.svnignore (from /trunk/openvpn/.svnignore:585) M /branches/BETA21/openvpn/install-win32 A /branches/BETA21/openvpn/install-win32/.svnignore (from /trunk/openvpn/install-win32/.svnignore:585) svn merge -r 582:585 $SO/trunk/openvpn 2.1_beta1 ------------------------------------------------------------------------ r583 | james | 2005-09-26 11:20:48 +0200 (Mon, 26 Sep 2005) | 6 lines Changed paths: M /branches/BETA21/openvpn/Makefile.am R /branches/BETA21/openvpn/sample-keys/pkcs12.p12 Added scripting code to Makefile.am to ignore .svn directories on make dist. Tell svn that pkcs12.p12 is binary. ------------------------------------------------------------------------ r581 | james | 2005-09-26 09:40:02 +0200 (Mon, 26 Sep 2005) | 1 line Changed paths: M /branches/BETA21/openvpn/ChangeLog M /branches/BETA21/openvpn/config-win32.h.in M /branches/BETA21/openvpn/configure.ac A /branches/BETA21/openvpn/easy-rsa/1.0 A /branches/BETA21/openvpn/easy-rsa/1.0/README (from /branches/BETA21/openvpn/easy-rsa/README:580) A /branches/BETA21/openvpn/easy-rsa/1.0/build-ca (from /branches/BETA21/openvpn/easy-rsa/build-ca:580) A /branches/BETA21/openvpn/easy-rsa/1.0/build-dh (from /branches/BETA21/openvpn/easy-rsa/build-dh:580) A /branches/BETA21/openvpn/easy-rsa/1.0/build-inter (from /branches/BETA21/openvpn/easy-rsa/build-inter:580) A /branches/BETA21/openvpn/easy-rsa/1.0/build-key (from /branches/BETA21/openvpn/easy-rsa/build-key:580) A /branches/BETA21/openvpn/easy-rsa/1.0/build-key-pass (from /branches/BETA21/openvpn/easy-rsa/build-key-pass:580) A /branches/BETA21/openvpn/easy-rsa/1.0/build-key-pkcs12 (from /branches/BETA21/openvpn/easy-rsa/build-key-pkcs12:580) A /branches/BETA21/openvpn/easy-rsa/1.0/build-key-server (from /branches/BETA21/openvpn/easy-rsa/build-key-server:580) A /branches/BETA21/openvpn/easy-rsa/1.0/build-req (from /branches/BETA21/openvpn/easy-rsa/build-req:580) A /branches/BETA21/openvpn/easy-rsa/1.0/build-req-pass (from /branches/BETA21/openvpn/easy-rsa/build-req-pass:580) A /branches/BETA21/openvpn/easy-rsa/1.0/clean-all (from /branches/BETA21/openvpn/easy-rsa/clean-all:580) A /branches/BETA21/openvpn/easy-rsa/1.0/list-crl (from /branches/BETA21/openvpn/easy-rsa/list-crl:580) A /branches/BETA21/openvpn/easy-rsa/1.0/make-crl (from /branches/BETA21/openvpn/easy-rsa/make-crl:580) A /branches/BETA21/openvpn/easy-rsa/1.0/openssl.cnf (from /branches/BETA21/openvpn/easy-rsa/openssl.cnf:580) A /branches/BETA21/openvpn/easy-rsa/1.0/revoke-crt (from /branches/BETA21/openvpn/easy-rsa/revoke-crt:580) A /branches/BETA21/openvpn/easy-rsa/1.0/revoke-full (from /branches/BETA21/openvpn/easy-rsa/revoke-full:580) A /branches/BETA21/openvpn/easy-rsa/1.0/sign-req (from /branches/BETA21/openvpn/easy-rsa/sign-req:580) A /branches/BETA21/openvpn/easy-rsa/1.0/vars (from /branches/BETA21/openvpn/easy-rsa/vars:580) R /branches/BETA21/openvpn/easy-rsa/README R /branches/BETA21/openvpn/easy-rsa/build-ca R /branches/BETA21/openvpn/easy-rsa/build-dh R /branches/BETA21/openvpn/easy-rsa/build-inter R /branches/BETA21/openvpn/easy-rsa/build-key R /branches/BETA21/openvpn/easy-rsa/build-key-pass R /branches/BETA21/openvpn/easy-rsa/build-key-pkcs12 R /branches/BETA21/openvpn/easy-rsa/build-key-server R /branches/BETA21/openvpn/easy-rsa/build-req R /branches/BETA21/openvpn/easy-rsa/build-req-pass R /branches/BETA21/openvpn/easy-rsa/clean-all A /branches/BETA21/openvpn/easy-rsa/inherit-inter R /branches/BETA21/openvpn/easy-rsa/list-crl D /branches/BETA21/openvpn/easy-rsa/make-crl R /branches/BETA21/openvpn/easy-rsa/openssl.cnf A /branches/BETA21/openvpn/easy-rsa/pkitool D /branches/BETA21/openvpn/easy-rsa/revoke-crt R /branches/BETA21/openvpn/easy-rsa/revoke-full R /branches/BETA21/openvpn/easy-rsa/sign-req R /branches/BETA21/openvpn/easy-rsa/vars M /branches/BETA21/openvpn/errlevel.h M /branches/BETA21/openvpn/forward.c M /branches/BETA21/openvpn/forward.h M /branches/BETA21/openvpn/helper.c M /branches/BETA21/openvpn/init.c M /branches/BETA21/openvpn/init.h M /branches/BETA21/openvpn/install-win32/openvpn.nsi.in M /branches/BETA21/openvpn/manage.c M /branches/BETA21/openvpn/manage.h M /branches/BETA21/openvpn/misc.c M /branches/BETA21/openvpn/multi.c M /branches/BETA21/openvpn/openvpn-plugin.h M /branches/BETA21/openvpn/openvpn.8 M /branches/BETA21/openvpn/openvpn.c M /branches/BETA21/openvpn/openvpn.h M /branches/BETA21/openvpn/options.c M /branches/BETA21/openvpn/options.h M /branches/BETA21/openvpn/otime.h M /branches/BETA21/openvpn/plugin.c M /branches/BETA21/openvpn/plugin.h M /branches/BETA21/openvpn/proto.c M /branches/BETA21/openvpn/proto.h M /branches/BETA21/openvpn/push.c M /branches/BETA21/openvpn/route.c M /branches/BETA21/openvpn/route.h A /branches/BETA21/openvpn/sample-scripts/ucn.pl M /branches/BETA21/openvpn/service-win32/mkpatch M /branches/BETA21/openvpn/service-win32/service.patch M /branches/BETA21/openvpn/sig.c M /branches/BETA21/openvpn/socket.c M /branches/BETA21/openvpn/ssl.c M /branches/BETA21/openvpn/tap-win32/SOURCES M /branches/BETA21/openvpn/tap-win32/common.h M /branches/BETA21/openvpn/tap-win32/i386/OemWin2k.inf M /branches/BETA21/openvpn/tap-win32/prototypes.h M /branches/BETA21/openvpn/tap-win32/tapdrvr.c M /branches/BETA21/openvpn/tap-win32/types.h M /branches/BETA21/openvpn/tun.c M /branches/BETA21/openvpn/tun.h version 2.1_beta1 ------------------------------------------------------------------------ r580 | james | 2005-09-26 07:28:27 +0200 (Mon, 26 Sep 2005) | 6 lines Changed paths: A /branches/BETA21 (from /trunk:579) This is the start of the BETA21 branch. It includes the --topology feature, and TAP-Win32 driver changes to allow non-admin access. ------------------------------------------------------------------------ r572 | james | 2005-09-26 06:14:33 +0200 (Mon, 26 Sep 2005) | 1 line Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/forward.c M /trunk/openvpn/install-win32/prebuild M /trunk/openvpn/openvpn.8 M /trunk/openvpn/plugin.c version 2.0.3_rc1 ------------------------------------------------------------------------ r566 | jimyonan | 2005-08-25 19:09:58 +0200 (Thu, 25 Aug 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac version 2.0.2 ------------------------------------------------------------------------ r561 | jimyonan | 2005-08-24 11:08:53 +0200 (Wed, 24 Aug 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/install-win32/openvpn.nsi.in A /trunk/openvpn/install-win32/prebuild A /trunk/openvpn/install-win32/u2d.c M /trunk/openvpn/route.c M /trunk/openvpn/socket.c version 2.0.2_rc1 ------------------------------------------------------------------------ r558 | jimyonan | 2005-08-16 22:14:27 +0200 (Tue, 16 Aug 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/Makefile.am M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/cryptoapi.c M /trunk/openvpn/debug/valgrind-suppress M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.h M /trunk/openvpn/event.c M /trunk/openvpn/forward.c M /trunk/openvpn/init.c M /trunk/openvpn/install-win32/openssl.bat M /trunk/openvpn/makefile.w32 M /trunk/openvpn/manage.c M /trunk/openvpn/management/management-notes.txt M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/mroute.c M /trunk/openvpn/mroute.h M /trunk/openvpn/mtcp.c M /trunk/openvpn/multi.c M /trunk/openvpn/multi.h M /trunk/openvpn/ntlm.c M /trunk/openvpn/occ.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/perf.h M /trunk/openvpn/pool.c M /trunk/openvpn/proxy.c M /trunk/openvpn/push.c M /trunk/openvpn/push.h A /trunk/openvpn/sample-keys/pkcs12.p12 M /trunk/openvpn/schedule.c M /trunk/openvpn/shaper.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/syshead.h A /trunk/openvpn/t_cltsrv.sh A /trunk/openvpn/t_lpback.sh M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c version 2.0.1 ------------------------------------------------------------------------ r552 | jimyonan | 2005-07-21 22:45:48 +0200 (Thu, 21 Jul 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 version 2.0.1_rc7 ------------------------------------------------------------------------ r550 | jimyonan | 2005-07-15 20:54:05 +0200 (Fri, 15 Jul 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/misc.c M /trunk/openvpn/sample-config-files/client.conf M /trunk/openvpn/sample-config-files/server.conf version 2.0.1_rc6 ------------------------------------------------------------------------ r539 | jimyonan | 2005-07-04 09:19:01 +0200 (Mon, 04 Jul 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/init.c M /trunk/openvpn/plugin/auth-pam/Makefile M /trunk/openvpn/plugin/auth-pam/auth-pam.c M /trunk/openvpn/plugin/auth-pam/pamdl.c M /trunk/openvpn/plugin/auth-pam/pamdl.h version 2.0.1_rc5 ------------------------------------------------------------------------ r533 | jimyonan | 2005-06-15 18:54:55 +0200 (Wed, 15 Jun 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/plugin/auth-pam/auth-pam.c version 2.0.1_rc4 ------------------------------------------------------------------------ r529 | jimyonan | 2005-06-12 10:01:25 +0200 (Sun, 12 Jun 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac A /trunk/openvpn/contrib/pull-resolv-conf A /trunk/openvpn/contrib/pull-resolv-conf/client.down A /trunk/openvpn/contrib/pull-resolv-conf/client.up M /trunk/openvpn/fragment.c M /trunk/openvpn/gremlin.c M /trunk/openvpn/init.c M /trunk/openvpn/manage.c M /trunk/openvpn/manage.h M /trunk/openvpn/multi.c M /trunk/openvpn/openvpn-plugin.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.h M /trunk/openvpn/options.c M /trunk/openvpn/plugin/auth-pam/auth-pam.c M /trunk/openvpn/plugin/down-root/down-root.c M /trunk/openvpn/plugin.c M /trunk/openvpn/pool.c M /trunk/openvpn/pool.h version 2.0.1_rc3 ------------------------------------------------------------------------ r523 | jimyonan | 2005-05-18 10:21:55 +0200 (Wed, 18 May 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/multi.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/options.c M /trunk/openvpn/plugin.h M /trunk/openvpn/ssl.c version 2.0.1_rc2.1 ------------------------------------------------------------------------ r521 | jimyonan | 2005-05-01 00:21:16 +0200 (Sun, 01 May 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/openvpn-plugin.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/options.c M /trunk/openvpn/plugin/auth-pam/auth-pam.c M /trunk/openvpn/plugin/down-root/down-root.c M /trunk/openvpn/plugin.c M /trunk/openvpn/plugin.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h version 2.0.1_rc1 ------------------------------------------------------------------------ r519 | jimyonan | 2005-04-18 06:11:14 +0200 (Mon, 18 Apr 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/memcmp.c M /trunk/openvpn/ntlm.c M /trunk/openvpn/options.c version 2.0 ------------------------------------------------------------------------ r517 | jimyonan | 2005-04-11 06:16:33 +0200 (Mon, 11 Apr 2005) | 2 lines Changed paths: M /trunk/openvpn/COPYING M /trunk/openvpn/COPYRIGHT.GPL M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/Makefile.am M /trunk/openvpn/README M /trunk/openvpn/basic.h M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/circ_list.h M /trunk/openvpn/common.h M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/event.c M /trunk/openvpn/event.h M /trunk/openvpn/fdmisc.c M /trunk/openvpn/fdmisc.h M /trunk/openvpn/forward-inline.h M /trunk/openvpn/forward.c M /trunk/openvpn/forward.h M /trunk/openvpn/fragment.c M /trunk/openvpn/fragment.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/gremlin.h M /trunk/openvpn/helper.c M /trunk/openvpn/helper.h M /trunk/openvpn/init.c M /trunk/openvpn/init.h M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/integer.h M /trunk/openvpn/interval.c M /trunk/openvpn/interval.h M /trunk/openvpn/list.c M /trunk/openvpn/list.h M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/manage.c M /trunk/openvpn/manage.h M /trunk/openvpn/mbuf.c M /trunk/openvpn/mbuf.h M /trunk/openvpn/memcmp.c M /trunk/openvpn/memdbg.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/mroute.c M /trunk/openvpn/mroute.h M /trunk/openvpn/mss.c M /trunk/openvpn/mss.h M /trunk/openvpn/mtcp.c M /trunk/openvpn/mtcp.h M /trunk/openvpn/mtu.c M /trunk/openvpn/mtu.h M /trunk/openvpn/mudp.c M /trunk/openvpn/mudp.h M /trunk/openvpn/multi.c M /trunk/openvpn/multi.h M /trunk/openvpn/ntlm.c M /trunk/openvpn/occ-inline.h M /trunk/openvpn/occ.c M /trunk/openvpn/occ.h M /trunk/openvpn/openvpn-plugin.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/otime.c M /trunk/openvpn/otime.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/perf.c M /trunk/openvpn/perf.h M /trunk/openvpn/ping-inline.h M /trunk/openvpn/ping.c M /trunk/openvpn/ping.h M /trunk/openvpn/plugin/auth-pam/auth-pam.c M /trunk/openvpn/plugin/down-root/down-root.c M /trunk/openvpn/plugin/examples/simple.c M /trunk/openvpn/plugin.c M /trunk/openvpn/plugin.h M /trunk/openvpn/pool.c M /trunk/openvpn/pool.h M /trunk/openvpn/proto.c M /trunk/openvpn/proto.h M /trunk/openvpn/proxy.c M /trunk/openvpn/proxy.h M /trunk/openvpn/push.c M /trunk/openvpn/push.h M /trunk/openvpn/reliable.c M /trunk/openvpn/reliable.h M /trunk/openvpn/route.c M /trunk/openvpn/route.h M /trunk/openvpn/schedule.c M /trunk/openvpn/schedule.h M /trunk/openvpn/service-win32/openvpnserv.c M /trunk/openvpn/session_id.c M /trunk/openvpn/session_id.h M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h M /trunk/openvpn/sig.c M /trunk/openvpn/sig.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/socks.c M /trunk/openvpn/socks.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/status.c M /trunk/openvpn/status.h M /trunk/openvpn/syshead.h M /trunk/openvpn/tap-win32/common.h M /trunk/openvpn/tap-win32/constants.h M /trunk/openvpn/tap-win32/dhcp.c M /trunk/openvpn/tap-win32/dhcp.h M /trunk/openvpn/tap-win32/endian.h M /trunk/openvpn/tap-win32/error.c M /trunk/openvpn/tap-win32/error.h M /trunk/openvpn/tap-win32/hexdump.c M /trunk/openvpn/tap-win32/hexdump.h M /trunk/openvpn/tap-win32/i386/OemWin2k.inf M /trunk/openvpn/tap-win32/i386/tap.cat M /trunk/openvpn/tap-win32/instance.c M /trunk/openvpn/tap-win32/lock.h M /trunk/openvpn/tap-win32/macinfo.c M /trunk/openvpn/tap-win32/macinfo.h M /trunk/openvpn/tap-win32/mem.c M /trunk/openvpn/tap-win32/proto.h M /trunk/openvpn/tap-win32/prototypes.h M /trunk/openvpn/tap-win32/tapdrvr.c M /trunk/openvpn/tap-win32/types.h M /trunk/openvpn/thread.c M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h M /trunk/openvpn/win32.c M /trunk/openvpn/win32.h version 2.0_rc21 ------------------------------------------------------------------------ r515 | jimyonan | 2005-04-04 14:01:20 +0200 (Mon, 04 Apr 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/sample-scripts/openvpn.init M /trunk/openvpn/suse/openvpn.init version 2.0_rc20 ------------------------------------------------------------------------ r513 | jimyonan | 2005-03-30 08:34:28 +0200 (Wed, 30 Mar 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/route.c version 2.0_rc19 ------------------------------------------------------------------------ r509 | jimyonan | 2005-03-28 12:47:30 +0200 (Mon, 28 Mar 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac A /trunk/openvpn/install-win32/buildopensslpath.bat M /trunk/openvpn/makefile.w32 M /trunk/openvpn/openvpn.8 version 2.0_rc18 ------------------------------------------------------------------------ r507 | jimyonan | 2005-03-13 09:55:00 +0200 (Sun, 13 Mar 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/manage.c M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/plugin/auth-pam/README M /trunk/openvpn/plugin/auth-pam/auth-pam.c M /trunk/openvpn/plugin/down-root/down-root.c M /trunk/openvpn/sample-scripts/bridge-start version 2.0_rc17 ------------------------------------------------------------------------ r505 | jimyonan | 2005-02-20 21:19:13 +0200 (Sun, 20 Feb 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/easy-rsa/README M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/service-win32/service.patch version 2.0_rc16 ------------------------------------------------------------------------ r501 | jimyonan | 2005-02-20 03:03:46 +0200 (Sun, 20 Feb 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.h M /trunk/openvpn/easy-rsa/README M /trunk/openvpn/easy-rsa/Windows/README.txt A /trunk/openvpn/easy-rsa/Windows/build-key-pkcs12.bat A /trunk/openvpn/easy-rsa/build-key-pkcs12 M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/openvpn.8 version 2.0_rc15 ------------------------------------------------------------------------ r496 | jimyonan | 2005-02-17 22:49:46 +0200 (Thu, 17 Feb 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/init.c version 2.0_rc14a ------------------------------------------------------------------------ r494 | jimyonan | 2005-02-17 06:59:15 +0200 (Thu, 17 Feb 2005) | 2 lines Changed paths: M /trunk/openvpn/COPYING M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/buffer.c M /trunk/openvpn/configure.ac M /trunk/openvpn/cryptoapi.c M /trunk/openvpn/easy-rsa/Windows/README.txt A /trunk/openvpn/easy-rsa/Windows/init-config.bat A /trunk/openvpn/easy-rsa/Windows/revoke-full.bat D /trunk/openvpn/easy-rsa/Windows/revoke-key.bat D /trunk/openvpn/easy-rsa/Windows/vars.bat A /trunk/openvpn/easy-rsa/Windows/vars.bat.sample A /trunk/openvpn/easy-rsa/revoke-full M /trunk/openvpn/easy-rsa/vars M /trunk/openvpn/init.c M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/install-win32/setpath.nsi M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/sample-config-files/client.conf M /trunk/openvpn/sample-config-files/server.conf M /trunk/openvpn/sample-scripts/bridge-start M /trunk/openvpn/sample-scripts/verify-cn M /trunk/openvpn/service-win32/openvpnserv.c M /trunk/openvpn/service-win32/service.patch M /trunk/openvpn/ssl.c version 2.0_rc14 ------------------------------------------------------------------------ r492 | jimyonan | 2005-02-06 06:10:33 +0200 (Sun, 06 Feb 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/configure.ac M /trunk/openvpn/forward.c M /trunk/openvpn/init.c M /trunk/openvpn/init.h M /trunk/openvpn/install-win32/openvpn.nsi.in A /trunk/openvpn/install-win32/sample.ovpn D /trunk/openvpn/install-win32/sample.ovpn.txt M /trunk/openvpn/misc.c M /trunk/openvpn/mtcp.c M /trunk/openvpn/mudp.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h version 2.0_rc12 ------------------------------------------------------------------------ r490 | jimyonan | 2005-02-03 09:35:57 +0200 (Thu, 03 Feb 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/INSTALL-win32.txt M /trunk/openvpn/configure.ac M /trunk/openvpn/doclean M /trunk/openvpn/easy-rsa/Windows/vars.bat M /trunk/openvpn/easy-rsa/build-ca M /trunk/openvpn/easy-rsa/build-dh M /trunk/openvpn/easy-rsa/build-inter M /trunk/openvpn/easy-rsa/build-key M /trunk/openvpn/easy-rsa/build-key-pass M /trunk/openvpn/easy-rsa/build-key-server M /trunk/openvpn/easy-rsa/build-req M /trunk/openvpn/easy-rsa/build-req-pass M /trunk/openvpn/easy-rsa/clean-all M /trunk/openvpn/easy-rsa/list-crl M /trunk/openvpn/easy-rsa/make-crl M /trunk/openvpn/easy-rsa/revoke-crt M /trunk/openvpn/easy-rsa/sign-req M /trunk/openvpn/easy-rsa/vars M /trunk/openvpn/error.c M /trunk/openvpn/init.c M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/misc.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/plugin/examples/build M /trunk/openvpn/pool.c M /trunk/openvpn/pool.h M /trunk/openvpn/sample-config-files/home.up M /trunk/openvpn/sample-config-files/office.up M /trunk/openvpn/sample-config-files/openvpn-shutdown.sh M /trunk/openvpn/sample-config-files/openvpn-startup.sh M /trunk/openvpn/sample-config-files/server.conf M /trunk/openvpn/sample-config-files/static-home.conf M /trunk/openvpn/sample-config-files/static-office.conf M /trunk/openvpn/sample-config-files/tls-home.conf M /trunk/openvpn/sample-config-files/tls-office.conf M /trunk/openvpn/sample-scripts/bridge-start version 2.0_rc11 ------------------------------------------------------------------------ r488 | jimyonan | 2005-01-27 12:44:12 +0200 (Thu, 27 Jan 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/easy-rsa/build-ca M /trunk/openvpn/easy-rsa/build-key M /trunk/openvpn/easy-rsa/build-key-pass M /trunk/openvpn/easy-rsa/build-key-server M /trunk/openvpn/error.h M /trunk/openvpn/options.c version 2.0_rc10 ------------------------------------------------------------------------ r486 | jimyonan | 2005-01-23 09:21:01 +0200 (Sun, 23 Jan 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/common.h M /trunk/openvpn/configure.ac M /trunk/openvpn/easy-rsa/Windows/README.txt M /trunk/openvpn/easy-rsa/Windows/vars.bat M /trunk/openvpn/init.c M /trunk/openvpn/init.h M /trunk/openvpn/mtcp.c M /trunk/openvpn/mudp.c M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.h M /trunk/openvpn/push.c M /trunk/openvpn/route.c M /trunk/openvpn/sig.c M /trunk/openvpn/ssl.h version 2.0_rc9 ------------------------------------------------------------------------ r484 | jimyonan | 2005-01-19 08:05:36 +0200 (Wed, 19 Jan 2005) | 2 lines Changed paths: M /trunk/openvpn/configure.ac M /trunk/openvpn/mudp.c M /trunk/openvpn/multi.c M /trunk/openvpn/multi.h version 2.0_rc8a ------------------------------------------------------------------------ r480 | jimyonan | 2005-01-16 04:47:25 +0200 (Sun, 16 Jan 2005) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/configure.ac M /trunk/openvpn/easy-rsa/build-key-server M /trunk/openvpn/install-win32/openssl.bat M /trunk/openvpn/makefile.w32 M /trunk/openvpn/manage.c M /trunk/openvpn/multi.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/proxy.c M /trunk/openvpn/ssl.h version 2.0_rc8 ------------------------------------------------------------------------ r476 | jimyonan | 2005-01-10 05:58:53 +0200 (Mon, 10 Jan 2005) | 2 lines Changed paths: M /trunk/openvpn/COPYING M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/INSTALL-win32.txt M /trunk/openvpn/Makefile.am M /trunk/openvpn/PORTS M /trunk/openvpn/README M /trunk/openvpn/basic.h M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/circ_list.h M /trunk/openvpn/common.h M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/event.c M /trunk/openvpn/event.h M /trunk/openvpn/fdmisc.c M /trunk/openvpn/fdmisc.h M /trunk/openvpn/forward-inline.h M /trunk/openvpn/forward.c M /trunk/openvpn/forward.h M /trunk/openvpn/fragment.c M /trunk/openvpn/fragment.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/gremlin.h M /trunk/openvpn/helper.c M /trunk/openvpn/helper.h M /trunk/openvpn/init.c M /trunk/openvpn/init.h M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/integer.h M /trunk/openvpn/interval.c M /trunk/openvpn/interval.h M /trunk/openvpn/list.c M /trunk/openvpn/list.h M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/manage.c M /trunk/openvpn/manage.h M /trunk/openvpn/mbuf.c M /trunk/openvpn/mbuf.h M /trunk/openvpn/memdbg.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/mroute.c M /trunk/openvpn/mroute.h M /trunk/openvpn/mss.c M /trunk/openvpn/mss.h M /trunk/openvpn/mtcp.c M /trunk/openvpn/mtcp.h M /trunk/openvpn/mtu.c M /trunk/openvpn/mtu.h M /trunk/openvpn/mudp.c M /trunk/openvpn/mudp.h M /trunk/openvpn/multi.c M /trunk/openvpn/multi.h M /trunk/openvpn/occ-inline.h M /trunk/openvpn/occ.c M /trunk/openvpn/occ.h M /trunk/openvpn/openvpn-plugin.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/otime.c M /trunk/openvpn/otime.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/perf.c M /trunk/openvpn/perf.h M /trunk/openvpn/ping-inline.h M /trunk/openvpn/ping.c M /trunk/openvpn/ping.h M /trunk/openvpn/plugin/auth-pam/auth-pam.c M /trunk/openvpn/plugin/down-root/down-root.c M /trunk/openvpn/plugin/examples/simple.c M /trunk/openvpn/plugin.c M /trunk/openvpn/plugin.h M /trunk/openvpn/pool.c M /trunk/openvpn/pool.h M /trunk/openvpn/proto.c M /trunk/openvpn/proto.h M /trunk/openvpn/proxy.c M /trunk/openvpn/proxy.h M /trunk/openvpn/push.c M /trunk/openvpn/push.h M /trunk/openvpn/reliable.c M /trunk/openvpn/reliable.h M /trunk/openvpn/route.c M /trunk/openvpn/route.h M /trunk/openvpn/sample-config-files/README M /trunk/openvpn/sample-config-files/client.conf M /trunk/openvpn/schedule.c M /trunk/openvpn/schedule.h M /trunk/openvpn/service-win32/openvpnserv.c M /trunk/openvpn/session_id.c M /trunk/openvpn/session_id.h M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h M /trunk/openvpn/sig.c M /trunk/openvpn/sig.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/socks.c M /trunk/openvpn/socks.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/status.c M /trunk/openvpn/status.h M /trunk/openvpn/syshead.h M /trunk/openvpn/tap-win32/common.h M /trunk/openvpn/tap-win32/constants.h M /trunk/openvpn/tap-win32/dhcp.c M /trunk/openvpn/tap-win32/dhcp.h M /trunk/openvpn/tap-win32/endian.h M /trunk/openvpn/tap-win32/error.c M /trunk/openvpn/tap-win32/error.h M /trunk/openvpn/tap-win32/hexdump.c M /trunk/openvpn/tap-win32/hexdump.h M /trunk/openvpn/tap-win32/i386/OemWin2k.inf M /trunk/openvpn/tap-win32/i386/tap.cat M /trunk/openvpn/tap-win32/instance.c M /trunk/openvpn/tap-win32/lock.h M /trunk/openvpn/tap-win32/macinfo.c M /trunk/openvpn/tap-win32/macinfo.h M /trunk/openvpn/tap-win32/mem.c M /trunk/openvpn/tap-win32/proto.h M /trunk/openvpn/tap-win32/prototypes.h M /trunk/openvpn/tap-win32/resource.rc M /trunk/openvpn/tap-win32/tapdrvr.c M /trunk/openvpn/tap-win32/types.h M /trunk/openvpn/thread.c M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h M /trunk/openvpn/win32.c M /trunk/openvpn/win32.h version 2.0_rc7 ------------------------------------------------------------------------ r469 | jimyonan | 2004-12-22 22:30:55 +0200 (Wed, 22 Dec 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 M /trunk/openvpn/options.c version 2.0_rc6a ------------------------------------------------------------------------ r467 | jimyonan | 2004-12-20 19:29:18 +0200 (Mon, 20 Dec 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/Makefile.am M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/debug/valgrind-suppress M /trunk/openvpn/errlevel.h M /trunk/openvpn/forward.c M /trunk/openvpn/fragment.c M /trunk/openvpn/init.c M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/makefile.w32 M /trunk/openvpn/makefile.w32-vc M /trunk/openvpn/mroute.c M /trunk/openvpn/mroute.h M /trunk/openvpn/mss.c M /trunk/openvpn/mtcp.c M /trunk/openvpn/mtcp.h M /trunk/openvpn/mtu.c M /trunk/openvpn/mtu.h M /trunk/openvpn/multi.c M /trunk/openvpn/multi.h M /trunk/openvpn/occ.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.h M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/perf.c M /trunk/openvpn/perf.h A /trunk/openvpn/proto.c M /trunk/openvpn/proto.h M /trunk/openvpn/proxy.c M /trunk/openvpn/proxy.h M /trunk/openvpn/push.c M /trunk/openvpn/socket.c M /trunk/openvpn/ssl.c M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h M /trunk/openvpn/win32.c version 2.0_rc6 ------------------------------------------------------------------------ r465 | jimyonan | 2004-12-16 11:59:54 +0200 (Thu, 16 Dec 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/common.h M /trunk/openvpn/configure.ac M /trunk/openvpn/debug/valgrind-suppress M /trunk/openvpn/errlevel.h M /trunk/openvpn/forward-inline.h M /trunk/openvpn/forward.c M /trunk/openvpn/forward.h M /trunk/openvpn/multi.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/push.c M /trunk/openvpn/ssl.c version 2.0_rc5 ------------------------------------------------------------------------ r463 | jimyonan | 2004-12-14 14:00:09 +0200 (Tue, 14 Dec 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/helper.c D /trunk/openvpn/inet_aton.c M /trunk/openvpn/makefile.w32 M /trunk/openvpn/makefile.w32-vc M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/tun.c version 2.0_rc4 ------------------------------------------------------------------------ r461 | jimyonan | 2004-12-13 09:21:51 +0200 (Mon, 13 Dec 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/event.c M /trunk/openvpn/init.c M /trunk/openvpn/manage.c M /trunk/openvpn/options.c M /trunk/openvpn/win32.c version 2.0_rc3 ------------------------------------------------------------------------ r459 | jimyonan | 2004-12-12 12:28:50 +0200 (Sun, 12 Dec 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.h M /trunk/openvpn/easy-rsa/README M /trunk/openvpn/error.h M /trunk/openvpn/init.c M /trunk/openvpn/init.h M /trunk/openvpn/manage.c M /trunk/openvpn/manage.h M /trunk/openvpn/management/management-notes.txt M /trunk/openvpn/ntlm.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/proxy.c M /trunk/openvpn/sample-config-files/client.conf M /trunk/openvpn/sig.c M /trunk/openvpn/status.c version 2.0_rc2 ------------------------------------------------------------------------ r457 | jimyonan | 2004-12-07 21:49:31 +0200 (Tue, 07 Dec 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec.in version 2.0_rc1 ------------------------------------------------------------------------ r455 | jimyonan | 2004-12-06 02:06:37 +0200 (Mon, 06 Dec 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/forward.c M /trunk/openvpn/init.c M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/manage.c M /trunk/openvpn/manage.h M /trunk/openvpn/management/management-notes.txt M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/mtcp.c M /trunk/openvpn/mudp.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/proxy.c M /trunk/openvpn/proxy.h M /trunk/openvpn/route.c M /trunk/openvpn/ssl.c M /trunk/openvpn/tun.c version 2.0_beta20 ------------------------------------------------------------------------ r453 | jimyonan | 2004-12-03 07:25:21 +0200 (Fri, 03 Dec 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/base64.c M /trunk/openvpn/base64.h M /trunk/openvpn/buffer.c M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/event.c M /trunk/openvpn/forward-inline.h M /trunk/openvpn/forward.c M /trunk/openvpn/forward.h M /trunk/openvpn/fragment.c M /trunk/openvpn/fragment.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/gremlin.h M /trunk/openvpn/helper.c M /trunk/openvpn/init.c M /trunk/openvpn/interval.c M /trunk/openvpn/interval.h M /trunk/openvpn/list.c M /trunk/openvpn/list.h M /trunk/openvpn/lzo.c M /trunk/openvpn/manage.c M /trunk/openvpn/misc.c M /trunk/openvpn/mroute.c M /trunk/openvpn/mroute.h M /trunk/openvpn/mss.c M /trunk/openvpn/mtcp.c M /trunk/openvpn/mtcp.h M /trunk/openvpn/mtu.c M /trunk/openvpn/mudp.c M /trunk/openvpn/mudp.h M /trunk/openvpn/multi.c M /trunk/openvpn/multi.h M /trunk/openvpn/ntlm.c M /trunk/openvpn/occ-inline.h M /trunk/openvpn/occ.c M /trunk/openvpn/occ.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/ping.c M /trunk/openvpn/plugin/auth-pam/pamdl.c M /trunk/openvpn/plugin.c M /trunk/openvpn/plugin.h M /trunk/openvpn/proxy.c M /trunk/openvpn/proxy.h M /trunk/openvpn/push.c M /trunk/openvpn/push.h M /trunk/openvpn/reliable.c M /trunk/openvpn/route.c M /trunk/openvpn/route.h M /trunk/openvpn/schedule.c M /trunk/openvpn/schedule.h M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h M /trunk/openvpn/sig.c M /trunk/openvpn/sig.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/socks.c M /trunk/openvpn/socks.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/syshead.h M /trunk/openvpn/thread.c M /trunk/openvpn/tun.c M /trunk/openvpn/win32.c version 2.0_beta19 ------------------------------------------------------------------------ r448 | jimyonan | 2004-11-28 21:22:11 +0200 (Sun, 28 Nov 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/INSTALL-win32.txt M /trunk/openvpn/Makefile.am M /trunk/openvpn/acinclude.m4 A /trunk/openvpn/base64.c A /trunk/openvpn/base64.h M /trunk/openvpn/basic.h M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/circ_list.h M /trunk/openvpn/common.h M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/contrib/multilevel-init.patch M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h A /trunk/openvpn/cryptoapi.c A /trunk/openvpn/cryptoapi.h A /trunk/openvpn/debug A /trunk/openvpn/debug/valgrind-suppress A /trunk/openvpn/doclean M /trunk/openvpn/easy-rsa/README A /trunk/openvpn/easy-rsa/Windows A /trunk/openvpn/easy-rsa/Windows/README.txt A /trunk/openvpn/easy-rsa/Windows/build-ca.bat A /trunk/openvpn/easy-rsa/Windows/build-dh.bat A /trunk/openvpn/easy-rsa/Windows/build-key-server.bat A /trunk/openvpn/easy-rsa/Windows/build-key.bat A /trunk/openvpn/easy-rsa/Windows/clean-all.bat A /trunk/openvpn/easy-rsa/Windows/index.txt.start A /trunk/openvpn/easy-rsa/Windows/revoke-key.bat A /trunk/openvpn/easy-rsa/Windows/serial.start A /trunk/openvpn/easy-rsa/Windows/vars.bat A /trunk/openvpn/easy-rsa/build-key-server A /trunk/openvpn/easy-rsa/list-crl A /trunk/openvpn/easy-rsa/make-crl M /trunk/openvpn/easy-rsa/openssl.cnf A /trunk/openvpn/easy-rsa/revoke-crt M /trunk/openvpn/easy-rsa/vars D /trunk/openvpn/encrypt_sign.h M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h A /trunk/openvpn/event.c A /trunk/openvpn/event.h A /trunk/openvpn/forward-inline.h A /trunk/openvpn/forward.c A /trunk/openvpn/forward.h M /trunk/openvpn/fragment.c M /trunk/openvpn/fragment.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/gremlin.h A /trunk/openvpn/helper.c A /trunk/openvpn/helper.h A /trunk/openvpn/init.c A /trunk/openvpn/init.h A /trunk/openvpn/install-win32/openssl.bat M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/install-win32/sample.ovpn.txt A /trunk/openvpn/interval.c M /trunk/openvpn/interval.h D /trunk/openvpn/io.c D /trunk/openvpn/io.h A /trunk/openvpn/list.c A /trunk/openvpn/list.h M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/makefile.w32 A /trunk/openvpn/makefile.w32-vc A /trunk/openvpn/manage.c A /trunk/openvpn/manage.h A /trunk/openvpn/management A /trunk/openvpn/management/management-notes.txt A /trunk/openvpn/mbuf.c A /trunk/openvpn/mbuf.h M /trunk/openvpn/memdbg.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h A /trunk/openvpn/mroute.c A /trunk/openvpn/mroute.h A /trunk/openvpn/mtcp.c A /trunk/openvpn/mtcp.h M /trunk/openvpn/mtu.c M /trunk/openvpn/mtu.h A /trunk/openvpn/mudp.c A /trunk/openvpn/mudp.h A /trunk/openvpn/multi.c A /trunk/openvpn/multi.h A /trunk/openvpn/ntlm.c A /trunk/openvpn/ntlm.h A /trunk/openvpn/occ-inline.h A /trunk/openvpn/occ.c A /trunk/openvpn/occ.h A /trunk/openvpn/openvpn-plugin.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/options.c M /trunk/openvpn/options.h A /trunk/openvpn/otime.c A /trunk/openvpn/otime.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h A /trunk/openvpn/perf.c A /trunk/openvpn/perf.h A /trunk/openvpn/ping-inline.h A /trunk/openvpn/ping.c A /trunk/openvpn/ping.h A /trunk/openvpn/plugin A /trunk/openvpn/plugin/README A /trunk/openvpn/plugin/auth-pam A /trunk/openvpn/plugin/auth-pam/Makefile A /trunk/openvpn/plugin/auth-pam/README A /trunk/openvpn/plugin/auth-pam/auth-pam.c A /trunk/openvpn/plugin/auth-pam/pamdl.c A /trunk/openvpn/plugin/auth-pam/pamdl.h A /trunk/openvpn/plugin/down-root A /trunk/openvpn/plugin/down-root/Makefile A /trunk/openvpn/plugin/down-root/README A /trunk/openvpn/plugin/down-root/down-root.c A /trunk/openvpn/plugin/examples A /trunk/openvpn/plugin/examples/README A /trunk/openvpn/plugin/examples/build A /trunk/openvpn/plugin/examples/simple.c A /trunk/openvpn/plugin/examples/simple.def A /trunk/openvpn/plugin/examples/winbuild A /trunk/openvpn/plugin.c A /trunk/openvpn/plugin.h A /trunk/openvpn/pool.c A /trunk/openvpn/pool.h M /trunk/openvpn/proto.h M /trunk/openvpn/proxy.c M /trunk/openvpn/proxy.h A /trunk/openvpn/push.c A /trunk/openvpn/push.h M /trunk/openvpn/reliable.c M /trunk/openvpn/reliable.h M /trunk/openvpn/route.c M /trunk/openvpn/route.h A /trunk/openvpn/sample-config-files/client.conf M /trunk/openvpn/sample-config-files/firewall.sh M /trunk/openvpn/sample-config-files/loopback-client M /trunk/openvpn/sample-config-files/loopback-server A /trunk/openvpn/sample-config-files/server.conf M /trunk/openvpn/sample-config-files/static-home.conf M /trunk/openvpn/sample-config-files/static-office.conf M /trunk/openvpn/sample-config-files/tls-home.conf M /trunk/openvpn/sample-config-files/tls-office.conf M /trunk/openvpn/sample-config-files/xinetd-client-config M /trunk/openvpn/sample-config-files/xinetd-server-config M /trunk/openvpn/sample-keys/README M /trunk/openvpn/sample-keys/client.crt M /trunk/openvpn/sample-keys/client.key A /trunk/openvpn/sample-keys/pass.crt A /trunk/openvpn/sample-keys/pass.key M /trunk/openvpn/sample-keys/server.crt M /trunk/openvpn/sample-keys/server.key M /trunk/openvpn/sample-keys/tmp-ca.crt M /trunk/openvpn/sample-keys/tmp-ca.key A /trunk/openvpn/sample-scripts/auth-pam.pl A /trunk/openvpn/sample-scripts/bridge-start A /trunk/openvpn/sample-scripts/bridge-stop M /trunk/openvpn/sample-scripts/openvpn.init A /trunk/openvpn/schedule.c A /trunk/openvpn/schedule.h M /trunk/openvpn/service-win32/openvpnserv.c M /trunk/openvpn/service-win32/service.patch M /trunk/openvpn/session_id.c M /trunk/openvpn/session_id.h M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h A /trunk/openvpn/sig.c A /trunk/openvpn/sig.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/socks.c M /trunk/openvpn/socks.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h A /trunk/openvpn/status.c A /trunk/openvpn/status.h M /trunk/openvpn/syshead.h M /trunk/openvpn/tap-win32/SOURCES M /trunk/openvpn/tap-win32/common.h M /trunk/openvpn/tap-win32/constants.h M /trunk/openvpn/tap-win32/error.c M /trunk/openvpn/tap-win32/error.h M /trunk/openvpn/tap-win32/i386/OemWin2k.inf A /trunk/openvpn/tap-win32/instance.c A /trunk/openvpn/tap-win32/lock.h M /trunk/openvpn/tap-win32/macinfo.c M /trunk/openvpn/tap-win32/macinfo.h M /trunk/openvpn/tap-win32/mem.c M /trunk/openvpn/tap-win32/proto.h M /trunk/openvpn/tap-win32/prototypes.h M /trunk/openvpn/tap-win32/resource.rc M /trunk/openvpn/tap-win32/tapdrvr.c M /trunk/openvpn/tap-win32/types.h M /trunk/openvpn/thread.c M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h M /trunk/openvpn/win32.c M /trunk/openvpn/win32.h version 2.0_beta18 ------------------------------------------------------------------------ r431 | mtbishop | 2004-08-18 09:40:42 +0200 (Wed, 18 Aug 2004) | 2 lines Changed paths: M /trunk/openvpn/openvpn.spec.in blow my own horn ------------------------------------------------------------------------ r430 | mtbishop | 2004-08-18 09:37:39 +0200 (Wed, 18 Aug 2004) | 2 lines Changed paths: M /trunk/openvpn/openvpn.spec.in monstrous packaging bug. limit files/dirs in /etc to only those we want to claim, avoid conflicting with other packages that own, eg, /etc/rc.d/ :-) ------------------------------------------------------------------------ r410 | jimyonan | 2004-05-10 08:34:58 +0200 (Mon, 10 May 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac version 1.6.0 ------------------------------------------------------------------------ r388 | jimyonan | 2004-04-02 17:05:04 +0200 (Fri, 02 Apr 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL-win32.txt M /trunk/openvpn/configure.ac M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/makefile.w32 M /trunk/openvpn/syshead.h M /trunk/openvpn/tun.c version 1.6_rc4 ------------------------------------------------------------------------ r364 | jimyonan | 2004-03-14 11:03:06 +0200 (Sun, 14 Mar 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL-win32.txt M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/route.c M /trunk/openvpn/route.h M /trunk/openvpn/tap-win32/SOURCES M /trunk/openvpn/tap-win32/dhcp.c M /trunk/openvpn/tap-win32/i386/OemWin2k.inf M /trunk/openvpn/tap-win32/tapdrvr.c M /trunk/openvpn/tun.c version 1.6_rc3 ------------------------------------------------------------------------ r360 | jimyonan | 2004-03-04 10:50:33 +0200 (Thu, 04 Mar 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/options.c M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.6_rc2 ------------------------------------------------------------------------ r356 | jimyonan | 2004-03-03 23:28:10 +0200 (Wed, 03 Mar 2004) | 2 lines Changed paths: M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.c version 1.6_rc1.2 ------------------------------------------------------------------------ r354 | jimyonan | 2004-03-03 23:07:16 +0200 (Wed, 03 Mar 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/errlevel.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/options.c M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.6_rc1.1 ------------------------------------------------------------------------ r350 | jimyonan | 2004-03-03 00:01:26 +0200 (Wed, 03 Mar 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.c version 1.6_rc1 ------------------------------------------------------------------------ r342 | jimyonan | 2004-02-23 05:58:59 +0200 (Mon, 23 Feb 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/fragment.c M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/io.c M /trunk/openvpn/lzo.c M /trunk/openvpn/mtu.c M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.c M /trunk/openvpn/proxy.c M /trunk/openvpn/service-win32/openvpnserv.c M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/socks.c M /trunk/openvpn/ssl.c M /trunk/openvpn/tap-win32/SOURCES M /trunk/openvpn/tap-win32/dhcp.c M /trunk/openvpn/tap-win32/dhcp.h M /trunk/openvpn/tap-win32/i386/OemWin2k.inf M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.6_beta7 ------------------------------------------------------------------------ r340 | jimyonan | 2004-02-21 20:18:14 +0200 (Sat, 21 Feb 2004) | 2 lines Changed paths: M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/tap-win32/SOURCES M /trunk/openvpn/tap-win32/common.h M /trunk/openvpn/tap-win32/dhcp.c M /trunk/openvpn/tap-win32/dhcp.h M /trunk/openvpn/tap-win32/i386/tap.cat M /trunk/openvpn/tap-win32/tapdrvr.c M /trunk/openvpn/tap-win32/types.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.6_beta6.3 ------------------------------------------------------------------------ r336 | jimyonan | 2004-02-14 03:08:16 +0200 (Sat, 14 Feb 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/misc.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/ssl.c M /trunk/openvpn/tun.c version 1.6_beta6.2 ------------------------------------------------------------------------ r334 | jimyonan | 2004-02-09 00:35:25 +0200 (Mon, 09 Feb 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.c version 1.6_beta6.1 ------------------------------------------------------------------------ r332 | jimyonan | 2004-02-05 23:52:40 +0200 (Thu, 05 Feb 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/tap-win32/i386/tap.cat M /trunk/openvpn/tun.c version 1.6_beta6 ------------------------------------------------------------------------ r329 | jimyonan | 2004-02-04 20:49:03 +0200 (Wed, 04 Feb 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.c M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/socks.c M /trunk/openvpn/socks.h version 1.6_beta5.1 ------------------------------------------------------------------------ r327 | jimyonan | 2004-02-02 02:02:33 +0200 (Mon, 02 Feb 2004) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/INSTALL-win32.txt M /trunk/openvpn/Makefile.am M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/errlevel.h M /trunk/openvpn/makefile.w32 M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/route.c M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h A /trunk/openvpn/socks.c A /trunk/openvpn/socks.h M /trunk/openvpn/syshead.h M /trunk/openvpn/tap-win32/SOURCES M /trunk/openvpn/tap-win32/common.h M /trunk/openvpn/tap-win32/dhcp.c M /trunk/openvpn/tap-win32/dhcp.h M /trunk/openvpn/tap-win32/error.c M /trunk/openvpn/tap-win32/error.h M /trunk/openvpn/tap-win32/i386/OemWin2k.inf M /trunk/openvpn/tap-win32/mem.c M /trunk/openvpn/tap-win32/prototypes.h M /trunk/openvpn/tap-win32/tapdrvr.c M /trunk/openvpn/tap-win32/types.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.6_beta5 ------------------------------------------------------------------------ r325 | jimyonan | 2004-01-15 09:23:27 +0200 (Thu, 15 Jan 2004) | 2 lines Changed paths: M /trunk/openvpn/COPYING M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL-win32.txt M /trunk/openvpn/Makefile.am M /trunk/openvpn/basic.h M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/circ_list.h M /trunk/openvpn/common.h M /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac A /trunk/openvpn/contrib A /trunk/openvpn/contrib/README A /trunk/openvpn/contrib/multilevel-init.patch A /trunk/openvpn/contrib/openvpn-fwmarkroute-1.00 A /trunk/openvpn/contrib/openvpn-fwmarkroute-1.00/README A /trunk/openvpn/contrib/openvpn-fwmarkroute-1.00/fwmarkroute.down A /trunk/openvpn/contrib/openvpn-fwmarkroute-1.00/fwmarkroute.up M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/encrypt_sign.h M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/fdmisc.c M /trunk/openvpn/fdmisc.h M /trunk/openvpn/fragment.c M /trunk/openvpn/fragment.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/gremlin.h M /trunk/openvpn/install-win32/openvpn.nsi.in M /trunk/openvpn/integer.h M /trunk/openvpn/interval.h M /trunk/openvpn/io.c M /trunk/openvpn/io.h M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/makefile.w32 M /trunk/openvpn/memdbg.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/mss.c M /trunk/openvpn/mss.h M /trunk/openvpn/mtu.c M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/proto.h M /trunk/openvpn/proxy.c M /trunk/openvpn/proxy.h M /trunk/openvpn/reliable.c M /trunk/openvpn/reliable.h M /trunk/openvpn/route.c M /trunk/openvpn/route.h M /trunk/openvpn/service-win32/openvpnserv.c M /trunk/openvpn/session_id.c M /trunk/openvpn/session_id.h M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/syshead.h M /trunk/openvpn/tap-win32/SOURCES A /trunk/openvpn/tap-win32/common.h M /trunk/openvpn/tap-win32/constants.h A /trunk/openvpn/tap-win32/dhcp.c A /trunk/openvpn/tap-win32/dhcp.h M /trunk/openvpn/tap-win32/endian.h M /trunk/openvpn/tap-win32/error.c M /trunk/openvpn/tap-win32/error.h M /trunk/openvpn/tap-win32/hexdump.c M /trunk/openvpn/tap-win32/hexdump.h M /trunk/openvpn/tap-win32/i386/OemWin2k.inf M /trunk/openvpn/tap-win32/macinfo.c M /trunk/openvpn/tap-win32/macinfo.h M /trunk/openvpn/tap-win32/mem.c A /trunk/openvpn/tap-win32/proto.h M /trunk/openvpn/tap-win32/prototypes.h M /trunk/openvpn/tap-win32/tapdrvr.c M /trunk/openvpn/tap-win32/types.h M /trunk/openvpn/thread.c M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h M /trunk/openvpn/win32.c M /trunk/openvpn/win32.h version 1.6_beta1 ------------------------------------------------------------------------ r323 | jimyonan | 2003-11-21 12:00:04 +0200 (Fri, 21 Nov 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL-win32.txt M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 version 1.5.0 ------------------------------------------------------------------------ r318 | jimyonan | 2003-11-06 18:06:39 +0200 (Thu, 06 Nov 2003) | 2 lines Changed paths: M /trunk/openvpn/COPYING M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL A /trunk/openvpn/INSTALL-win32.txt M /trunk/openvpn/Makefile.am M /trunk/openvpn/PORTS M /trunk/openvpn/README M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/circ_list.h M /trunk/openvpn/common.h D /trunk/openvpn/config-win32.h A /trunk/openvpn/config-win32.h.in M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h A /trunk/openvpn/encrypt_sign.h M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/fdmisc.c M /trunk/openvpn/fragment.c M /trunk/openvpn/fragment.h A /trunk/openvpn/images A /trunk/openvpn/images/install-whirl.bmp A /trunk/openvpn/images/openvpn.ico M /trunk/openvpn/inet_aton.c A /trunk/openvpn/install-win32 A /trunk/openvpn/install-win32/openvpn.nsi.in A /trunk/openvpn/install-win32/sample.ovpn.txt A /trunk/openvpn/install-win32/setpath.nsi A /trunk/openvpn/integer.h M /trunk/openvpn/interval.h A /trunk/openvpn/io.c A /trunk/openvpn/io.h M /trunk/openvpn/makefile.w32 D /trunk/openvpn/malloc.c M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h A /trunk/openvpn/mss.c A /trunk/openvpn/mss.h M /trunk/openvpn/mtu.c M /trunk/openvpn/mtu.h D /trunk/openvpn/openvpn-win32.c D /trunk/openvpn/openvpn-win32.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h A /trunk/openvpn/proto.h A /trunk/openvpn/proxy.c A /trunk/openvpn/proxy.h M /trunk/openvpn/reliable.c A /trunk/openvpn/route.c A /trunk/openvpn/route.h M /trunk/openvpn/sample-scripts/openvpn.init A /trunk/openvpn/service-win32 A /trunk/openvpn/service-win32/Makefile A /trunk/openvpn/service-win32/mkpatch A /trunk/openvpn/service-win32/openvpnserv.c A /trunk/openvpn/service-win32/service.patch M /trunk/openvpn/session_id.c M /trunk/openvpn/shaper.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h A /trunk/openvpn/suse A /trunk/openvpn/suse/openvpn.init M /trunk/openvpn/syshead.h A /trunk/openvpn/tap-win32 A /trunk/openvpn/tap-win32/MAKEFILE A /trunk/openvpn/tap-win32/SOURCES A /trunk/openvpn/tap-win32/constants.h A /trunk/openvpn/tap-win32/endian.h A /trunk/openvpn/tap-win32/error.c A /trunk/openvpn/tap-win32/error.h A /trunk/openvpn/tap-win32/hexdump.c A /trunk/openvpn/tap-win32/hexdump.h A /trunk/openvpn/tap-win32/i386 A /trunk/openvpn/tap-win32/i386/OemWin2k.inf A /trunk/openvpn/tap-win32/i386/tap.cat A /trunk/openvpn/tap-win32/macinfo.c A /trunk/openvpn/tap-win32/macinfo.h A /trunk/openvpn/tap-win32/mem.c A /trunk/openvpn/tap-win32/prototypes.h A /trunk/openvpn/tap-win32/resource.rc A /trunk/openvpn/tap-win32/tapdrvr.c A /trunk/openvpn/tap-win32/types.h M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h A /trunk/openvpn/win32.c A /trunk/openvpn/win32.h version 1.5_rc1 ------------------------------------------------------------------------ r278 | jimyonan | 2003-08-05 09:42:31 +0200 (Tue, 05 Aug 2003) | 2 lines Changed paths: M /trunk/openvpn/COPYING M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.h version 1.4.3 ------------------------------------------------------------------------ r260 | jimyonan | 2003-07-17 01:32:37 +0200 (Thu, 17 Jul 2003) | 2 lines Changed paths: M /trunk/openvpn/configure.ac version 1.4.2 ------------------------------------------------------------------------ r258 | jimyonan | 2003-07-16 06:26:16 +0200 (Wed, 16 Jul 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/PORTS M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/sample-config-files/static-home.conf M /trunk/openvpn/sample-config-files/static-office.conf M /trunk/openvpn/sample-config-files/tls-home.conf M /trunk/openvpn/sample-config-files/tls-office.conf M /trunk/openvpn/ssl.c version 1.4.1.10 ------------------------------------------------------------------------ r251 | jimyonan | 2003-07-08 22:03:53 +0200 (Tue, 08 Jul 2003) | 2 lines Changed paths: M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn-win32.h version 1.4.1.9 ------------------------------------------------------------------------ r249 | jimyonan | 2003-07-07 00:38:00 +0200 (Mon, 07 Jul 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/Makefile.am M /trunk/openvpn/configure.ac A /trunk/openvpn/gentoo A /trunk/openvpn/gentoo/openvpn.init D /trunk/openvpn/sample-scripts/openvpn.init.gentoo version 1.4.1.8 ------------------------------------------------------------------------ r247 | jimyonan | 2003-07-06 23:20:24 +0200 (Sun, 06 Jul 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/Makefile.am M /trunk/openvpn/configure.ac A /trunk/openvpn/makefile.w32 M /trunk/openvpn/openvpn-win32.c M /trunk/openvpn/openvpn-win32.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/options.c version 1.4.1.7 ------------------------------------------------------------------------ r245 | jimyonan | 2003-07-03 07:11:03 +0200 (Thu, 03 Jul 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/common.h M /trunk/openvpn/config-win32.h M /trunk/openvpn/configure.ac M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/fdmisc.c M /trunk/openvpn/fragment.c M /trunk/openvpn/inet_aton.c M /trunk/openvpn/malloc.c M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h A /trunk/openvpn/openvpn-win32.c A /trunk/openvpn/openvpn-win32.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/packet_id.c A /trunk/openvpn/sample-scripts/openvpn.init.gentoo M /trunk/openvpn/socket.c M /trunk/openvpn/ssl.c M /trunk/openvpn/syshead.h M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c version 1.4.1.6 ------------------------------------------------------------------------ r243 | jimyonan | 2003-06-29 08:13:27 +0200 (Sun, 29 Jun 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/buffer.c A /trunk/openvpn/config-win32.h M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/fdmisc.c M /trunk/openvpn/fragment.c M /trunk/openvpn/gremlin.c M /trunk/openvpn/inet_aton.c M /trunk/openvpn/interval.h M /trunk/openvpn/lzo.c M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/mtu.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/reliable.c M /trunk/openvpn/session_id.c M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h M /trunk/openvpn/socket.c M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/syshead.h M /trunk/openvpn/thread.c M /trunk/openvpn/tun.c version 1.4.1.5 ------------------------------------------------------------------------ r241 | jimyonan | 2003-06-03 00:48:35 +0200 (Tue, 03 Jun 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.4.1.4 ------------------------------------------------------------------------ r239 | jimyonan | 2003-05-28 22:17:07 +0200 (Wed, 28 May 2003) | 2 lines Changed paths: M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/configure.ac M /trunk/openvpn/fragment.c M /trunk/openvpn/fragment.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/syshead.h version 1.4.1.3 ------------------------------------------------------------------------ r237 | jimyonan | 2003-05-27 23:11:31 +0200 (Tue, 27 May 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/fragment.c M /trunk/openvpn/fragment.h M /trunk/openvpn/openvpn.c version 1.4.1.2 ------------------------------------------------------------------------ r235 | jimyonan | 2003-05-27 21:05:48 +0200 (Tue, 27 May 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/buffer.h M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/errlevel.h M /trunk/openvpn/fragment.c M /trunk/openvpn/fragment.h M /trunk/openvpn/interval.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/shaper.h M /trunk/openvpn/syshead.h version 1.4.1.1 ------------------------------------------------------------------------ r231 | jimyonan | 2003-05-16 09:49:20 +0200 (Fri, 16 May 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/configure.ac M /trunk/openvpn/fragment.c M /trunk/openvpn/fragment.h M /trunk/openvpn/interval.h M /trunk/openvpn/misc.h M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h M /trunk/openvpn/syshead.h version 1.4.1 ------------------------------------------------------------------------ r227 | jimyonan | 2003-05-15 06:19:48 +0200 (Thu, 15 May 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/acinclude.m4 M /trunk/openvpn/configure.ac M /trunk/openvpn/tun.c version 1.4.0.3 ------------------------------------------------------------------------ r217 | jimyonan | 2003-05-12 03:24:50 +0200 (Mon, 12 May 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/buffer.h M /trunk/openvpn/configure.ac M /trunk/openvpn/misc.c M /trunk/openvpn/mtu.c M /trunk/openvpn/mtu.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h version 1.4.0.2 ------------------------------------------------------------------------ r215 | jimyonan | 2003-05-11 05:36:01 +0200 (Sun, 11 May 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/README M /trunk/openvpn/configure.ac M /trunk/openvpn/tun.c version 1.4.0.1 ------------------------------------------------------------------------ r211 | jimyonan | 2003-05-08 06:07:58 +0200 (Thu, 08 May 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac version 1.4.0 ------------------------------------------------------------------------ r209 | jimyonan | 2003-05-05 07:56:57 +0200 (Mon, 05 May 2003) | 2 lines Changed paths: M /trunk/openvpn/configure.ac M /trunk/openvpn/misc.c M /trunk/openvpn/openvpn.c version 1.3.2.35 ------------------------------------------------------------------------ r207 | jimyonan | 2003-05-05 05:50:31 +0200 (Mon, 05 May 2003) | 2 lines Changed paths: M /trunk/openvpn/COPYING M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac version 1.3.2.34 ------------------------------------------------------------------------ r205 | jimyonan | 2003-05-04 00:10:17 +0200 (Sun, 04 May 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/misc.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/sample-scripts/openvpn.init M /trunk/openvpn/sample-scripts/verify-cn version 1.3.2.33 ------------------------------------------------------------------------ r203 | jimyonan | 2003-05-03 12:57:08 +0200 (Sat, 03 May 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/PORTS M /trunk/openvpn/configure.ac M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/sample-scripts/openvpn.init M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.h M /trunk/openvpn/syshead.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.3.2.32 ------------------------------------------------------------------------ r201 | jimyonan | 2003-04-28 07:17:22 +0200 (Mon, 28 Apr 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/errlevel.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h version 1.3.2.29 ------------------------------------------------------------------------ r198 | jimyonan | 2003-04-27 07:29:32 +0200 (Sun, 27 Apr 2003) | 2 lines Changed paths: M /trunk/openvpn/INSTALL M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec.in A /trunk/openvpn/sample-config-files/loopback-client A /trunk/openvpn/sample-config-files/loopback-server version 1.3.2.28 ------------------------------------------------------------------------ r196 | jimyonan | 2003-04-26 19:19:48 +0200 (Sat, 26 Apr 2003) | 2 lines Changed paths: M /trunk/openvpn/configure.ac M /trunk/openvpn/syshead.h version 1.3.2.27 ------------------------------------------------------------------------ r194 | jimyonan | 2003-04-26 05:54:40 +0200 (Sat, 26 Apr 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac M /trunk/openvpn/errlevel.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.c version 1.3.2.26 ------------------------------------------------------------------------ r192 | jimyonan | 2003-04-23 17:45:04 +0200 (Wed, 23 Apr 2003) | 2 lines Changed paths: M /trunk/openvpn/configure.ac M /trunk/openvpn/tun.c version 1.3.2.25 ------------------------------------------------------------------------ r190 | jimyonan | 2003-04-19 14:09:37 +0200 (Sat, 19 Apr 2003) | 2 lines Changed paths: M /trunk/openvpn/configure.ac M /trunk/openvpn/gremlin.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c version 1.3.2.24 ------------------------------------------------------------------------ r188 | jimyonan | 2003-04-17 16:00:26 +0200 (Thu, 17 Apr 2003) | 2 lines Changed paths: M /trunk/openvpn/configure.ac M /trunk/openvpn/thread.h version 1.3.2.23 ------------------------------------------------------------------------ r186 | jimyonan | 2003-04-17 14:22:47 +0200 (Thu, 17 Apr 2003) | 2 lines Changed paths: M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/common.h M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/gremlin.h M /trunk/openvpn/misc.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/reliable.c M /trunk/openvpn/shaper.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/syshead.h M /trunk/openvpn/thread.c M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.3.2.22 ------------------------------------------------------------------------ r184 | jimyonan | 2003-04-17 09:12:16 +0200 (Thu, 17 Apr 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/Makefile.am M /trunk/openvpn/acinclude.m4 M /trunk/openvpn/buffer.h M /trunk/openvpn/common.h M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.c A /trunk/openvpn/fragment.c A /trunk/openvpn/fragment.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/interval.h M /trunk/openvpn/lzo.c M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/mtu.c M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/reliable.c M /trunk/openvpn/reliable.h M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.3.2.21 ------------------------------------------------------------------------ r158 | jimyonan | 2003-03-22 17:45:54 +0200 (Sat, 22 Mar 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/buffer.h M /trunk/openvpn/configure.ac M /trunk/openvpn/errlevel.h M /trunk/openvpn/tun.c version 1.3.2.20 ------------------------------------------------------------------------ r148 | jimyonan | 2003-03-16 10:34:12 +0200 (Sun, 16 Mar 2003) | 2 lines Changed paths: M /trunk/openvpn/Makefile.am M /trunk/openvpn/buffer.c M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/lzo.c M /trunk/openvpn/misc.c M /trunk/openvpn/openvpn.c M /trunk/openvpn/packet_id.c M /trunk/openvpn/reliable.c M /trunk/openvpn/session_id.c M /trunk/openvpn/socket.c M /trunk/openvpn/ssl.c M /trunk/openvpn/thread.c M /trunk/openvpn/tun.c version 1.3.2.19 ------------------------------------------------------------------------ r146 | jimyonan | 2003-03-15 14:30:13 +0200 (Sat, 15 Mar 2003) | 2 lines Changed paths: M /trunk/openvpn/Makefile.am M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 version 1.3.2.18 ------------------------------------------------------------------------ r144 | jimyonan | 2003-03-15 09:18:00 +0200 (Sat, 15 Mar 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/Makefile.am M /trunk/openvpn/acinclude.m4 M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/configure.ac M /trunk/openvpn/error.c M /trunk/openvpn/error.h A /trunk/openvpn/mtu.c M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/syshead.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.3.2.17 ------------------------------------------------------------------------ r135 | jimyonan | 2003-02-24 21:34:18 +0200 (Mon, 24 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.ac version 1.3.2.16 ------------------------------------------------------------------------ r133 | jimyonan | 2003-02-24 07:10:23 +0200 (Mon, 24 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/Makefile.am M /trunk/openvpn/configure.ac D /trunk/openvpn/openvpn.spec A /trunk/openvpn/openvpn.spec.in version 1.3.2.15 ------------------------------------------------------------------------ r124 | jimyonan | 2003-02-22 23:46:21 +0200 (Sat, 22 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/Makefile.am M /trunk/openvpn/acinclude.m4 M /trunk/openvpn/configure.ac M /trunk/openvpn/error.c M /trunk/openvpn/error.h A /trunk/openvpn/inet_aton.c A /trunk/openvpn/malloc.c A /trunk/openvpn/memcmp.c M /trunk/openvpn/openvpn.spec version 1.3.2.14 ------------------------------------------------------------------------ r120 | jimyonan | 2003-02-21 18:14:06 +0200 (Fri, 21 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/Makefile.am M /trunk/openvpn/acinclude.m4 M /trunk/openvpn/basic.h M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/circ_list.h M /trunk/openvpn/common.h M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/fdmisc.c M /trunk/openvpn/fdmisc.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/gremlin.h M /trunk/openvpn/interval.h M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/memdbg.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/reliable.c M /trunk/openvpn/reliable.h M /trunk/openvpn/session_id.c M /trunk/openvpn/session_id.h M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/syshead.h M /trunk/openvpn/thread.c M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.3.2.13 ------------------------------------------------------------------------ r118 | jimyonan | 2003-02-21 17:03:14 +0200 (Fri, 21 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/Makefile.am M /trunk/openvpn/basic.h M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/circ_list.h M /trunk/openvpn/common.h M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/fdmisc.c M /trunk/openvpn/fdmisc.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/gremlin.h M /trunk/openvpn/interval.h M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/memdbg.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/reliable.c M /trunk/openvpn/reliable.h M /trunk/openvpn/session_id.c M /trunk/openvpn/session_id.h M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/syshead.h M /trunk/openvpn/thread.c M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version ------------------------------------------------------------------------ r117 | jimyonan | 2003-02-21 02:31:24 +0200 (Fri, 21 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/Makefile.am M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec version ------------------------------------------------------------------------ r116 | jimyonan | 2003-02-20 08:09:51 +0200 (Thu, 20 Feb 2003) | 2 lines Changed paths: D /trunk/openvpn/pre-touch Remove generated files from CVS. ------------------------------------------------------------------------ r114 | jimyonan | 2003-02-20 08:05:42 +0200 (Thu, 20 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL D /trunk/openvpn/autogen.sh M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec version 1.3.2.10 ------------------------------------------------------------------------ r113 | jimyonan | 2003-02-20 07:02:38 +0200 (Thu, 20 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/Makefile.am D /trunk/openvpn/Makefile.in M /trunk/openvpn/acinclude.m4 D /trunk/openvpn/aclocal.m4 M /trunk/openvpn/buffer.c M /trunk/openvpn/circ_list.h D /trunk/openvpn/config.guess D /trunk/openvpn/config.h.in D /trunk/openvpn/config.sub D /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c D /trunk/openvpn/depcomp M /trunk/openvpn/error.c M /trunk/openvpn/error.h D /trunk/openvpn/install-sh M /trunk/openvpn/lzo.c D /trunk/openvpn/missing D /trunk/openvpn/mkinstalldirs M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/socket.c M /trunk/openvpn/tun.c Remove generated files from CVS. ------------------------------------------------------------------------ r111 | jimyonan | 2003-02-16 21:01:49 +0200 (Sun, 16 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/fdmisc.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/packet_id.c version 1.3.2.9 ------------------------------------------------------------------------ r109 | jimyonan | 2003-02-11 17:14:23 +0200 (Tue, 11 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/PORTS M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/fdmisc.c M /trunk/openvpn/fdmisc.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/packet_id.h M /trunk/openvpn/socket.c M /trunk/openvpn/ssl.c M /trunk/openvpn/tun.c version 1.3.2.7 ------------------------------------------------------------------------ r107 | jimyonan | 2003-02-06 11:49:52 +0200 (Thu, 06 Feb 2003) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/config.h.in M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/ssl.c M /trunk/openvpn/syshead.h version 1.3.2.6 ------------------------------------------------------------------------ r105 | jimyonan | 2002-12-09 17:40:34 +0200 (Mon, 09 Dec 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c version 1.3.2.5 ------------------------------------------------------------------------ r103 | jimyonan | 2002-12-06 06:46:52 +0200 (Fri, 06 Dec 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/error.c M /trunk/openvpn/misc.c M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c version 1.3.2.4 ------------------------------------------------------------------------ r101 | jimyonan | 2002-12-04 10:20:29 +0200 (Wed, 04 Dec 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/config.h.in M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec M /trunk/openvpn/tun.c version 1.3.2.3 ------------------------------------------------------------------------ r99 | jimyonan | 2002-11-27 23:30:26 +0200 (Wed, 27 Nov 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/lzo.c M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/ssl.c version 1.3.2.2 ------------------------------------------------------------------------ r97 | jimyonan | 2002-11-11 18:53:20 +0200 (Mon, 11 Nov 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/config.h.in M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/errlevel.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/ssl.c M /trunk/openvpn/syshead.h version 1.3.2.1 ------------------------------------------------------------------------ r95 | jimyonan | 2002-10-20 11:58:27 +0200 (Sun, 20 Oct 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec M /trunk/openvpn/sample-scripts/openvpn.init M /trunk/openvpn/ssl.c version 1.3.1.10 ------------------------------------------------------------------------ r93 | jimyonan | 2002-10-20 09:25:16 +0200 (Sun, 20 Oct 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h A /trunk/openvpn/sample-config-files/xinetd-client-config A /trunk/openvpn/sample-config-files/xinetd-server-config M /trunk/openvpn/sample-scripts/openvpn.init M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h version 1.3.1.9 ------------------------------------------------------------------------ r91 | jimyonan | 2002-10-19 09:17:48 +0200 (Sat, 19 Oct 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec version 1.3.1.8 ------------------------------------------------------------------------ r89 | jimyonan | 2002-10-17 03:59:40 +0200 (Thu, 17 Oct 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec M /trunk/openvpn/ssl.c M /trunk/openvpn/tun.c version 1.3.1.7 ------------------------------------------------------------------------ r87 | jimyonan | 2002-10-08 12:03:33 +0200 (Tue, 08 Oct 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/config.h.in M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/syshead.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.3.1.6 ------------------------------------------------------------------------ r85 | jimyonan | 2002-09-28 09:40:39 +0200 (Sat, 28 Sep 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec version 1.3.1.5 ------------------------------------------------------------------------ r83 | jimyonan | 2002-09-14 23:54:10 +0200 (Sat, 14 Sep 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec version 1.3.1.4 ------------------------------------------------------------------------ r81 | jimyonan | 2002-08-07 11:13:16 +0200 (Wed, 07 Aug 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/easy-rsa/sign-req M /trunk/openvpn/openvpn.spec M /trunk/openvpn/ssl.c version 1.3.1.3 ------------------------------------------------------------------------ r79 | jimyonan | 2002-07-28 09:54:57 +0200 (Sun, 28 Jul 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/PORTS M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/config.h.in M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec M /trunk/openvpn/ssl.c M /trunk/openvpn/syshead.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.3.1.2 ------------------------------------------------------------------------ r77 | jimyonan | 2002-07-18 23:05:30 +0200 (Thu, 18 Jul 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/easy-rsa/README A /trunk/openvpn/easy-rsa/build-inter M /trunk/openvpn/openvpn.spec M /trunk/openvpn/ssl.c version 1.3.1.1 ------------------------------------------------------------------------ r75 | jimyonan | 2002-07-11 08:12:52 +0200 (Thu, 11 Jul 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec M /trunk/openvpn/sample-scripts/openvpn.init version 1.3.1 ------------------------------------------------------------------------ r73 | jimyonan | 2002-07-10 12:06:27 +0200 (Wed, 10 Jul 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/ssl.c version 1.3.0 ------------------------------------------------------------------------ r71 | jimyonan | 2002-07-09 10:33:04 +0200 (Tue, 09 Jul 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.spec M /trunk/openvpn/sample-config-files/static-home.conf M /trunk/openvpn/sample-config-files/static-office.conf M /trunk/openvpn/sample-config-files/tls-home.conf M /trunk/openvpn/sample-config-files/tls-office.conf version 1.2.1.11 ------------------------------------------------------------------------ r70 | jimyonan | 2002-07-08 00:49:19 +0200 (Mon, 08 Jul 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec version 1.2.1.10 ------------------------------------------------------------------------ r69 | jimyonan | 2002-07-08 00:43:12 +0200 (Mon, 08 Jul 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec version ------------------------------------------------------------------------ r68 | jimyonan | 2002-07-08 00:35:52 +0200 (Mon, 08 Jul 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/common.h M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/errlevel.h M /trunk/openvpn/error.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.2.1.9 ------------------------------------------------------------------------ r66 | jimyonan | 2002-06-30 20:36:05 +0200 (Sun, 30 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/PORTS M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/socket.c M /trunk/openvpn/ssl.h M /trunk/openvpn/tun.c version 1.2.1.8 ------------------------------------------------------------------------ r64 | jimyonan | 2002-06-26 07:31:32 +0200 (Wed, 26 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/config.h.in M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h version 1.2.1.6 ------------------------------------------------------------------------ r62 | jimyonan | 2002-06-25 08:56:16 +0200 (Tue, 25 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/Makefile.am M /trunk/openvpn/Makefile.in M /trunk/openvpn/PORTS M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/common.h M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h A /trunk/openvpn/errlevel.h M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/interval.h M /trunk/openvpn/lzo.h A /trunk/openvpn/mtu.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/reliable.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/thread.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.2.1.5 ------------------------------------------------------------------------ r60 | jimyonan | 2002-06-18 09:22:20 +0200 (Tue, 18 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec M /trunk/openvpn/sample-scripts/openvpn.init version 1.2.1.4 ------------------------------------------------------------------------ r58 | jimyonan | 2002-06-16 05:39:02 +0200 (Sun, 16 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/ssl.c version 1.2.1.3 ------------------------------------------------------------------------ r56 | jimyonan | 2002-06-14 11:05:22 +0200 (Fri, 14 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/syshead.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.2.1.2 ------------------------------------------------------------------------ r54 | jimyonan | 2002-06-13 02:23:33 +0200 (Thu, 13 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/sample-config-files/static-home.conf M /trunk/openvpn/sample-config-files/static-office.conf M /trunk/openvpn/sample-config-files/tls-home.conf M /trunk/openvpn/sample-config-files/tls-office.conf M /trunk/openvpn/socket.c version 1.2.1 ------------------------------------------------------------------------ r52 | jimyonan | 2002-06-10 02:49:29 +0200 (Mon, 10 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.2.0.11 ------------------------------------------------------------------------ r50 | jimyonan | 2002-06-08 15:21:17 +0200 (Sat, 08 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/socket.c version 1.2.0.10 ------------------------------------------------------------------------ r48 | jimyonan | 2002-06-07 10:43:49 +0200 (Fri, 07 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/Makefile.in M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/config.h.in M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/sample-config-files/static-home.conf M /trunk/openvpn/sample-config-files/static-office.conf M /trunk/openvpn/sample-config-files/tls-home.conf M /trunk/openvpn/sample-config-files/tls-office.conf M /trunk/openvpn/syshead.h M /trunk/openvpn/tun.c version 1.2.0.9 ------------------------------------------------------------------------ r46 | jimyonan | 2002-06-06 09:24:39 +0200 (Thu, 06 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/ssl.c version 1.2.0.8 ------------------------------------------------------------------------ r44 | jimyonan | 2002-06-05 09:53:37 +0200 (Wed, 05 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c version 1.2.0.7 ------------------------------------------------------------------------ r42 | jimyonan | 2002-06-05 09:43:06 +0200 (Wed, 05 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/common.h M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/error.c M /trunk/openvpn/error.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/socket.c M /trunk/openvpn/ssl.c version 1.2.0.6 ------------------------------------------------------------------------ r40 | jimyonan | 2002-06-04 07:54:56 +0200 (Tue, 04 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/sample-config-files/static-home.conf M /trunk/openvpn/sample-config-files/static-office.conf M /trunk/openvpn/sample-config-files/tls-home.conf M /trunk/openvpn/sample-config-files/tls-office.conf M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c version 1.2.0.5 ------------------------------------------------------------------------ r38 | jimyonan | 2002-06-01 20:22:08 +0200 (Sat, 01 Jun 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec version 1.2.0.4 ------------------------------------------------------------------------ r36 | jimyonan | 2002-05-30 02:04:45 +0200 (Thu, 30 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/Makefile.in A /trunk/openvpn/acinclude.m4 M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/config.h.in M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/pre-touch version 1.2.0.3 ------------------------------------------------------------------------ r34 | jimyonan | 2002-05-28 07:43:21 +0200 (Tue, 28 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/common.h M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.2.0.2 ------------------------------------------------------------------------ r32 | jimyonan | 2002-05-25 02:45:46 +0200 (Sat, 25 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h version 1.2.0.1 ------------------------------------------------------------------------ r30 | jimyonan | 2002-05-22 15:47:32 +0200 (Wed, 22 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec version 1.2.0 ------------------------------------------------------------------------ r28 | jimyonan | 2002-05-19 16:16:44 +0200 (Sun, 19 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/README M /trunk/openvpn/autogen.sh M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/crypto.c M /trunk/openvpn/openvpn.spec A /trunk/openvpn/pre-touch M /trunk/openvpn/syshead.h version 1.1.1.18 ------------------------------------------------------------------------ r27 | jimyonan | 2002-05-17 13:42:11 +0200 (Fri, 17 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/fdmisc.c M /trunk/openvpn/interval.h M /trunk/openvpn/lzo.c M /trunk/openvpn/misc.c M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/packet_id.c A /trunk/openvpn/sample-scripts/openvpn.init M /trunk/openvpn/shaper.c M /trunk/openvpn/socket.c M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h M /trunk/openvpn/tun.c version 1.1.1.17 ------------------------------------------------------------------------ r26 | jimyonan | 2002-05-15 09:21:43 +0200 (Wed, 15 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/PORTS M /trunk/openvpn/config.h.in M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h M /trunk/openvpn/ssl.c M /trunk/openvpn/syshead.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.1.1.16 ------------------------------------------------------------------------ r25 | jimyonan | 2002-05-13 09:27:42 +0200 (Mon, 13 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL D /trunk/openvpn/client.crt D /trunk/openvpn/client.key M /trunk/openvpn/configure M /trunk/openvpn/configure.ac D /trunk/openvpn/dh1024.pem D /trunk/openvpn/firewall.sh D /trunk/openvpn/home.up D /trunk/openvpn/office.up D /trunk/openvpn/openvpn-shutdown.sh D /trunk/openvpn/openvpn-startup.sh M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/options.h A /trunk/openvpn/sample-config-files A /trunk/openvpn/sample-config-files/README A /trunk/openvpn/sample-config-files/firewall.sh A /trunk/openvpn/sample-config-files/home.up A /trunk/openvpn/sample-config-files/office.up A /trunk/openvpn/sample-config-files/openvpn-shutdown.sh A /trunk/openvpn/sample-config-files/openvpn-startup.sh A /trunk/openvpn/sample-config-files/static-home.conf A /trunk/openvpn/sample-config-files/static-office.conf A /trunk/openvpn/sample-config-files/tls-home.conf A /trunk/openvpn/sample-config-files/tls-office.conf A /trunk/openvpn/sample-keys A /trunk/openvpn/sample-keys/README A /trunk/openvpn/sample-keys/client.crt A /trunk/openvpn/sample-keys/client.key A /trunk/openvpn/sample-keys/dh1024.pem A /trunk/openvpn/sample-keys/server.crt A /trunk/openvpn/sample-keys/server.key A /trunk/openvpn/sample-keys/tmp-ca.crt A /trunk/openvpn/sample-keys/tmp-ca.key A /trunk/openvpn/sample-scripts A /trunk/openvpn/sample-scripts/verify-cn D /trunk/openvpn/server.crt D /trunk/openvpn/server.key D /trunk/openvpn/static-home.conf D /trunk/openvpn/static-office.conf M /trunk/openvpn/syshead.h D /trunk/openvpn/tls-home.conf D /trunk/openvpn/tls-office.conf D /trunk/openvpn/tmp-ca.crt D /trunk/openvpn/tmp-ca.key M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h D /trunk/openvpn/verify-cn version 1.1.1.14 ------------------------------------------------------------------------ r24 | jimyonan | 2002-05-09 21:30:42 +0200 (Thu, 09 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/buffer.c M /trunk/openvpn/common.h M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/openvpn.spec M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/reliable.c version 1.1.1.13 ------------------------------------------------------------------------ r23 | jimyonan | 2002-05-09 11:26:43 +0200 (Thu, 09 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/buffer.c M /trunk/openvpn/common.h M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/gremlin.c M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/misc.c M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/reliable.c M /trunk/openvpn/ssl.c version 1.1.1.12 ------------------------------------------------------------------------ r22 | jimyonan | 2002-05-09 01:52:52 +0200 (Thu, 09 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/buffer.c M /trunk/openvpn/common.h M /trunk/openvpn/configure M /trunk/openvpn/configure.ac M /trunk/openvpn/error.c M /trunk/openvpn/gremlin.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/packet_id.c M /trunk/openvpn/reliable.c M /trunk/openvpn/reliable.h M /trunk/openvpn/ssl.c M /trunk/openvpn/thread.h M /trunk/openvpn/tun.h version 1.1.1.11 ------------------------------------------------------------------------ r21 | jimyonan | 2002-05-08 09:00:30 +0200 (Wed, 08 May 2002) | 2 lines Changed paths: A /trunk/openvpn/easy-rsa A /trunk/openvpn/easy-rsa/README A /trunk/openvpn/easy-rsa/build-ca A /trunk/openvpn/easy-rsa/build-dh A /trunk/openvpn/easy-rsa/build-key A /trunk/openvpn/easy-rsa/build-key-pass A /trunk/openvpn/easy-rsa/build-req A /trunk/openvpn/easy-rsa/build-req-pass A /trunk/openvpn/easy-rsa/clean-all A /trunk/openvpn/easy-rsa/openssl.cnf A /trunk/openvpn/easy-rsa/sign-req A /trunk/openvpn/easy-rsa/vars version 1.1.1.10 ------------------------------------------------------------------------ r20 | jimyonan | 2002-05-08 08:54:27 +0200 (Wed, 08 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL A /trunk/openvpn/Makefile.in M /trunk/openvpn/PORTS M /trunk/openvpn/README D /trunk/openvpn/acconfig.h A /trunk/openvpn/aclocal.m4 M /trunk/openvpn/autogen.sh M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/config.guess A /trunk/openvpn/config.h.in M /trunk/openvpn/config.sub A /trunk/openvpn/configure A /trunk/openvpn/configure.ac D /trunk/openvpn/configure.in M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h A /trunk/openvpn/depcomp M /trunk/openvpn/error.c M /trunk/openvpn/lzo.c M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/missing M /trunk/openvpn/mkinstalldirs M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec M /trunk/openvpn/packet_id.h M /trunk/openvpn/reliable.c M /trunk/openvpn/session_id.h M /trunk/openvpn/socket.c M /trunk/openvpn/ssl.c M /trunk/openvpn/syshead.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.1.1.10 ------------------------------------------------------------------------ r19 | jimyonan | 2002-05-06 19:00:52 +0200 (Mon, 06 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/acconfig.h M /trunk/openvpn/autogen.sh M /trunk/openvpn/buffer.h M /trunk/openvpn/configure.in M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/error.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.spec M /trunk/openvpn/options.c M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/reliable.c M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/syshead.h M /trunk/openvpn/thread.c M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.1.1.9 ------------------------------------------------------------------------ r18 | jimyonan | 2002-05-02 09:18:08 +0200 (Thu, 02 May 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/Makefile.am M /trunk/openvpn/README M /trunk/openvpn/acconfig.h M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/common.h M /trunk/openvpn/configure.in M /trunk/openvpn/error.c M /trunk/openvpn/error.h A /trunk/openvpn/firewall.sh A /trunk/openvpn/home.up M /trunk/openvpn/interval.h M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/memdbg.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h A /trunk/openvpn/office.up A /trunk/openvpn/openvpn-shutdown.sh A /trunk/openvpn/openvpn-startup.sh M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec A /trunk/openvpn/options.c A /trunk/openvpn/options.h M /trunk/openvpn/packet_id.h M /trunk/openvpn/reliable.c M /trunk/openvpn/reliable.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h A /trunk/openvpn/static-home.conf A /trunk/openvpn/static-office.conf M /trunk/openvpn/syshead.h A /trunk/openvpn/thread.c A /trunk/openvpn/thread.h A /trunk/openvpn/tls-home.conf A /trunk/openvpn/tls-office.conf M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.1.1.6 ------------------------------------------------------------------------ r17 | jimyonan | 2002-04-23 06:26:02 +0200 (Tue, 23 Apr 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.in M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.spec version 1.1.1 ------------------------------------------------------------------------ r16 | jimyonan | 2002-04-21 06:43:14 +0200 (Sun, 21 Apr 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/configure.in M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.spec version 1.1.0.9 ------------------------------------------------------------------------ r15 | jimyonan | 2002-04-20 09:14:50 +0200 (Sat, 20 Apr 2002) | 2 lines Changed paths: D /trunk/openvpn/aclocal.m4 version 1.1.0.8 ------------------------------------------------------------------------ r14 | jimyonan | 2002-04-20 08:50:11 +0200 (Sat, 20 Apr 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/PORTS M /trunk/openvpn/README M /trunk/openvpn/aclocal.m4 M /trunk/openvpn/autogen.sh M /trunk/openvpn/buffer.h M /trunk/openvpn/common.h M /trunk/openvpn/configure.in M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/gremlin.c M /trunk/openvpn/interval.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h A /trunk/openvpn/missing A /trunk/openvpn/mkinstalldirs M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h D /trunk/openvpn/openvpn.m4 A /trunk/openvpn/openvpn.spec D /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/shaper.c M /trunk/openvpn/shaper.h M /trunk/openvpn/ssl.c M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.1.0.8 ------------------------------------------------------------------------ r13 | jimyonan | 2002-04-10 08:15:26 +0200 (Wed, 10 Apr 2002) | 2 lines Changed paths: M /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL M /trunk/openvpn/README M /trunk/openvpn/configure.in M /trunk/openvpn/openvpn.8 version 1.1.0 final ------------------------------------------------------------------------ r12 | jimyonan | 2002-04-09 05:04:28 +0200 (Tue, 09 Apr 2002) | 2 lines Changed paths: A /trunk/openvpn/AUTHORS D /trunk/openvpn/CHANGES M /trunk/openvpn/COPYING A /trunk/openvpn/COPYRIGHT.GPL A /trunk/openvpn/ChangeLog M /trunk/openvpn/INSTALL A /trunk/openvpn/Makefile.am D /trunk/openvpn/Makefile.in A /trunk/openvpn/NEWS M /trunk/openvpn/PORTS M /trunk/openvpn/README M /trunk/openvpn/aclocal.m4 A /trunk/openvpn/autogen.sh M /trunk/openvpn/basic.h M /trunk/openvpn/buffer.c M /trunk/openvpn/buffer.h M /trunk/openvpn/common.h M /trunk/openvpn/configure.in M /trunk/openvpn/crypto.c M /trunk/openvpn/crypto.h M /trunk/openvpn/error.c M /trunk/openvpn/fdmisc.c M /trunk/openvpn/gremlin.c A /trunk/openvpn/install-sh D /trunk/openvpn/install.sh M /trunk/openvpn/interval.h M /trunk/openvpn/lzo.c M /trunk/openvpn/lzo.h M /trunk/openvpn/misc.c M /trunk/openvpn/misc.h M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.c M /trunk/openvpn/openvpn.h A /trunk/openvpn/openvpn.m4 D /trunk/openvpn/openvpn.spec A /trunk/openvpn/openvpn.spec.in M /trunk/openvpn/packet_id.c M /trunk/openvpn/packet_id.h M /trunk/openvpn/reliable.c M /trunk/openvpn/reliable.h M /trunk/openvpn/session_id.c M /trunk/openvpn/session_id.h A /trunk/openvpn/shaper.c A /trunk/openvpn/shaper.h M /trunk/openvpn/socket.c M /trunk/openvpn/socket.h M /trunk/openvpn/ssl.c M /trunk/openvpn/ssl.h A /trunk/openvpn/syshead.h M /trunk/openvpn/tun.c M /trunk/openvpn/tun.h version 1.1-pre2 ------------------------------------------------------------------------ r11 | jimyonan | 2002-03-30 22:47:43 +0200 (Sat, 30 Mar 2002) | 2 lines Changed paths: M /trunk/openvpn/openvpn.8 test-ca should be tmp-ca ------------------------------------------------------------------------ r10 | jimyonan | 2002-03-30 01:22:18 +0200 (Sat, 30 Mar 2002) | 2 lines Changed paths: M /trunk/openvpn/CHANGES M /trunk/openvpn/INSTALL M /trunk/openvpn/openvpn.8 M /trunk/openvpn/openvpn.h M /trunk/openvpn/openvpn.spec changes for 1.0.3 ------------------------------------------------------------------------ r9 | jimyonan | 2002-03-30 01:18:11 +0200 (Sat, 30 Mar 2002) | 2 lines Changed paths: M /trunk/openvpn/configure.in fixed library ordering problem on linker command line ------------------------------------------------------------------------ r8 | jimyonan | 2002-03-30 01:09:39 +0200 (Sat, 30 Mar 2002) | 2 lines Changed paths: A /trunk/openvpn/client.crt A /trunk/openvpn/client.key A /trunk/openvpn/dh1024.pem A /trunk/openvpn/server.crt A /trunk/openvpn/server.key A /trunk/openvpn/tmp-ca.crt A /trunk/openvpn/tmp-ca.key Test Certificates and Keys ------------------------------------------------------------------------ r3 | jimyonan | 2002-03-29 07:52:26 +0200 (Fri, 29 Mar 2002) | 2 lines Changed paths: A /trunk/openvpn A /trunk/openvpn/CHANGES A /trunk/openvpn/COPYING A /trunk/openvpn/INSTALL A /trunk/openvpn/Makefile.in A /trunk/openvpn/PORTS A /trunk/openvpn/README A /trunk/openvpn/acconfig.h A /trunk/openvpn/aclocal.m4 A /trunk/openvpn/basic.h A /trunk/openvpn/buffer.c A /trunk/openvpn/buffer.h A /trunk/openvpn/circ_list.h A /trunk/openvpn/common.h A /trunk/openvpn/config.guess A /trunk/openvpn/config.sub A /trunk/openvpn/configure.in A /trunk/openvpn/crypto.c A /trunk/openvpn/crypto.h A /trunk/openvpn/error.c A /trunk/openvpn/error.h A /trunk/openvpn/fdmisc.c A /trunk/openvpn/fdmisc.h A /trunk/openvpn/gremlin.c A /trunk/openvpn/gremlin.h A /trunk/openvpn/install.sh A /trunk/openvpn/interval.h A /trunk/openvpn/lzo.c A /trunk/openvpn/lzo.h A /trunk/openvpn/memdbg.h A /trunk/openvpn/misc.c A /trunk/openvpn/misc.h A /trunk/openvpn/openvpn.8 A /trunk/openvpn/openvpn.c A /trunk/openvpn/openvpn.h A /trunk/openvpn/openvpn.spec A /trunk/openvpn/packet_id.c A /trunk/openvpn/packet_id.h A /trunk/openvpn/reliable.c A /trunk/openvpn/reliable.h A /trunk/openvpn/session_id.c A /trunk/openvpn/session_id.h A /trunk/openvpn/socket.c A /trunk/openvpn/socket.h A /trunk/openvpn/ssl.c A /trunk/openvpn/ssl.h A /trunk/openvpn/tun.c A /trunk/openvpn/tun.h A /trunk/openvpn/verify-cn Initial revision ------------------------------------------------------------------------