diff options
| author | Arne Schwabe <arne@rfc2549.org> | 2012-07-21 01:11:36 +0200 | 
|---|---|---|
| committer | Arne Schwabe <arne@rfc2549.org> | 2012-07-21 01:11:36 +0200 | 
| commit | 23a783836e5765514c85f83a510b9225a43cdfc1 (patch) | |
| tree | 89efceeb468bc7c755a6db9f53a63aa993e48068 /openvpn/src/plugins/examples | |
| parent | 249cbf6d60929332f049468b40f4459167916ed1 (diff) | |
Update openvpn to Version 2.3_alpha3
--HG--
rename : openvpn/src/plugins/README => openvpn/doc/README.plugins
rename : openvpn/src/plugins/defer/README => openvpn/sample/sample-plugins/defer/README
rename : openvpn/src/plugins/defer/build => openvpn/sample/sample-plugins/defer/build
rename : openvpn/src/plugins/defer/simple.c => openvpn/sample/sample-plugins/defer/simple.c
rename : openvpn/src/plugins/examples/simple.def => openvpn/sample/sample-plugins/defer/simple.def
rename : openvpn/src/plugins/defer/winbuild => openvpn/sample/sample-plugins/defer/winbuild
rename : openvpn/src/plugins/examples/build => openvpn/sample/sample-plugins/log/build
rename : openvpn/src/plugins/examples/log.c => openvpn/sample/sample-plugins/log/log.c
rename : openvpn/src/plugins/examples/log_v3.c => openvpn/sample/sample-plugins/log/log_v3.c
rename : openvpn/src/plugins/examples/winbuild => openvpn/sample/sample-plugins/log/winbuild
rename : openvpn/src/plugins/examples/README => openvpn/sample/sample-plugins/simple/README
rename : openvpn/src/plugins/examples/build => openvpn/sample/sample-plugins/simple/build
rename : openvpn/src/plugins/examples/simple.c => openvpn/sample/sample-plugins/simple/simple.c
rename : openvpn/src/plugins/examples/simple.def => openvpn/sample/sample-plugins/simple/simple.def
rename : openvpn/src/plugins/examples/winbuild => openvpn/sample/sample-plugins/simple/winbuild
rename : openvpn/src/plugins/auth-pam/README => openvpn/src/plugins/auth-pam/README.auth-pam
rename : openvpn/src/plugins/down-root/README => openvpn/src/plugins/down-root/README.down-root
Diffstat (limited to 'openvpn/src/plugins/examples')
| -rw-r--r-- | openvpn/src/plugins/examples/README | 16 | ||||
| -rwxr-xr-x | openvpn/src/plugins/examples/build | 15 | ||||
| -rw-r--r-- | openvpn/src/plugins/examples/log.c | 184 | ||||
| -rw-r--r-- | openvpn/src/plugins/examples/log_v3.c | 247 | ||||
| -rw-r--r-- | openvpn/src/plugins/examples/simple.c | 120 | ||||
| -rwxr-xr-x | openvpn/src/plugins/examples/simple.def | 6 | ||||
| -rwxr-xr-x | openvpn/src/plugins/examples/winbuild | 18 | 
7 files changed, 0 insertions, 606 deletions
| diff --git a/openvpn/src/plugins/examples/README b/openvpn/src/plugins/examples/README deleted file mode 100644 index 4400cd30..00000000 --- a/openvpn/src/plugins/examples/README +++ /dev/null @@ -1,16 +0,0 @@ -OpenVPN plugin examples. - -Examples provided: - -simple.c -- using the --auth-user-pass-verify callback, verify -            that the username/password is "foo"/"bar". - -To build: - -  ./build simple (Linux/BSD/etc.) -  ./winbuild simple (MinGW on Windows) - -To use in OpenVPN, add to config file: - -  plugin simple.so (Linux/BSD/etc.) -  plugin simple.dll (MinGW on Windows) diff --git a/openvpn/src/plugins/examples/build b/openvpn/src/plugins/examples/build deleted file mode 100755 index bbb05f7c..00000000 --- a/openvpn/src/plugins/examples/build +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -# -# Build an OpenVPN plugin module on *nix.  The argument should -# be the base name of the C source file (without the .c). -# - -# This directory is where we will look for openvpn-plugin.h -CPPFLAGS="${CPPFLAGS:--I../../..}" - -CC="${CC:-gcc}" -CFLAGS="${CFLAGS:--O2 -Wall -g}" - -$CC $CPPFLAGS $CFLAGS -fPIC -c $1.c && \ -$CC $CFLAGS -fPIC -shared $LDFLAGS -Wl,-soname,$1.so -o $1.so $1.o -lc diff --git a/openvpn/src/plugins/examples/log.c b/openvpn/src/plugins/examples/log.c deleted file mode 100644 index 1cc4650e..00000000 --- a/openvpn/src/plugins/examples/log.c +++ /dev/null @@ -1,184 +0,0 @@ -/* - *  OpenVPN -- An application to securely tunnel IP networks - *             over a single TCP/UDP port, with support for SSL/TLS-based - *             session authentication and key exchange, - *             packet encryption, packet authentication, and - *             packet compression. - * - *  Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net> - * - *  This program is free software; you can redistribute it and/or modify - *  it under the terms of the GNU General Public License version 2 - *  as published by the Free Software Foundation. - * - *  This program is distributed in the hope that it will be useful, - *  but WITHOUT ANY WARRANTY; without even the implied warranty of - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - *  GNU General Public License for more details. - * - *  You should have received a copy of the GNU General Public License - *  along with this program (see the file COPYING included with this - *  distribution); if not, write to the Free Software Foundation, Inc., - *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA - */ - -/* - * This plugin is similar to simple.c, except it also logs extra information - * to stdout for every plugin method called by OpenVPN. - * - * See the README file for build instructions. - */ - -#include <stdio.h> -#include <string.h> -#include <stdlib.h> - -#include "openvpn-plugin.h" - -/* - * Our context, where we keep our state. - */ -struct plugin_context { -  const char *username; -  const char *password; -}; - -/* - * Given an environmental variable name, search - * the envp array for its value, returning it - * if found or NULL otherwise. - */ -static const char * -get_env (const char *name, const char *envp[]) -{ -  if (envp) -    { -      int i; -      const int namelen = strlen (name); -      for (i = 0; envp[i]; ++i) -	{ -	  if (!strncmp (envp[i], name, namelen)) -	    { -	      const char *cp = envp[i] + namelen; -	      if (*cp == '=') -		return cp + 1; -	    } -	} -    } -  return NULL; -} - -OPENVPN_EXPORT openvpn_plugin_handle_t -openvpn_plugin_open_v1 (unsigned int *type_mask, const char *argv[], const char *envp[]) -{ -  struct plugin_context *context; - -  /* -   * Allocate our context -   */ -  context = (struct plugin_context *) calloc (1, sizeof (struct plugin_context)); - -  /* -   * Set the username/password we will require. -   */ -  context->username = "foo"; -  context->password = "bar"; - -  /* -   * Which callbacks to intercept. -   */ -  *type_mask = -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_UP) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_DOWN) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_ROUTE_UP) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_IPCHANGE) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_TLS_VERIFY) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_CLIENT_CONNECT_V2) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_CLIENT_DISCONNECT) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_LEARN_ADDRESS) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_TLS_FINAL); - -  return (openvpn_plugin_handle_t) context; -} - -void -show (const int type, const char *argv[], const char *envp[]) -{ -  size_t i; -  switch (type) -    { -    case OPENVPN_PLUGIN_UP: -      printf ("OPENVPN_PLUGIN_UP\n"); -      break; -    case OPENVPN_PLUGIN_DOWN: -      printf ("OPENVPN_PLUGIN_DOWN\n"); -      break; -    case OPENVPN_PLUGIN_ROUTE_UP: -      printf ("OPENVPN_PLUGIN_ROUTE_UP\n"); -      break; -    case OPENVPN_PLUGIN_IPCHANGE: -      printf ("OPENVPN_PLUGIN_IPCHANGE\n"); -      break; -    case OPENVPN_PLUGIN_TLS_VERIFY: -      printf ("OPENVPN_PLUGIN_TLS_VERIFY\n"); -      break; -    case OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY: -      printf ("OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY\n"); -      break; -    case OPENVPN_PLUGIN_CLIENT_CONNECT_V2: -      printf ("OPENVPN_PLUGIN_CLIENT_CONNECT_V2\n"); -      break; -    case OPENVPN_PLUGIN_CLIENT_DISCONNECT: -      printf ("OPENVPN_PLUGIN_CLIENT_DISCONNECT\n"); -      break; -    case OPENVPN_PLUGIN_LEARN_ADDRESS: -      printf ("OPENVPN_PLUGIN_LEARN_ADDRESS\n"); -      break; -    case OPENVPN_PLUGIN_TLS_FINAL: -      printf ("OPENVPN_PLUGIN_TLS_FINAL\n"); -      break; -    default: -      printf ("OPENVPN_PLUGIN_?\n"); -      break; -    } - -  printf ("ARGV\n"); -  for (i = 0; argv[i] != NULL; ++i) -    printf ("%d '%s'\n", (int)i, argv[i]); - -  printf ("ENVP\n"); -  for (i = 0; envp[i] != NULL; ++i) -    printf ("%d '%s'\n", (int)i, envp[i]); -} - -OPENVPN_EXPORT int -openvpn_plugin_func_v1 (openvpn_plugin_handle_t handle, const int type, const char *argv[], const char *envp[]) -{ -  struct plugin_context *context = (struct plugin_context *) handle; - -  show (type, argv, envp); - -  /* check entered username/password against what we require */ -  if (type == OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY) -    { -      /* get username/password from envp string array */ -      const char *username = get_env ("username", envp); -      const char *password = get_env ("password", envp); - -      if (username && !strcmp (username, context->username) -	  && password && !strcmp (password, context->password)) -	return OPENVPN_PLUGIN_FUNC_SUCCESS; -      else -	return OPENVPN_PLUGIN_FUNC_ERROR; -    } -  else -    return OPENVPN_PLUGIN_FUNC_SUCCESS; -} - -OPENVPN_EXPORT void -openvpn_plugin_close_v1 (openvpn_plugin_handle_t handle) -{ -  struct plugin_context *context = (struct plugin_context *) handle; -  free (context); -} diff --git a/openvpn/src/plugins/examples/log_v3.c b/openvpn/src/plugins/examples/log_v3.c deleted file mode 100644 index 742c7568..00000000 --- a/openvpn/src/plugins/examples/log_v3.c +++ /dev/null @@ -1,247 +0,0 @@ -/* - *  OpenVPN -- An application to securely tunnel IP networks - *             over a single TCP/UDP port, with support for SSL/TLS-based - *             session authentication and key exchange, - *             packet encryption, packet authentication, and - *             packet compression. - * - *  Copyright (C) 2002-2009 OpenVPN Technologies, Inc. <sales@openvpn.net> - *  Copyright (C) 2010 David Sommerseth <dazo@users.sourceforge.net> - * - *  This program is free software; you can redistribute it and/or modify - *  it under the terms of the GNU General Public License version 2 - *  as published by the Free Software Foundation. - * - *  This program is distributed in the hope that it will be useful, - *  but WITHOUT ANY WARRANTY; without even the implied warranty of - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - *  GNU General Public License for more details. - * - *  You should have received a copy of the GNU General Public License - *  along with this program (see the file COPYING included with this - *  distribution); if not, write to the Free Software Foundation, Inc., - *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA - */ - -/* - * This plugin is similar to simple.c, except it also logs extra information - * to stdout for every plugin method called by OpenVPN.  The only difference - * between this (log_v3.c) and log.c is that this module uses the v3 plug-in - * API. - * - * See the README file for build instructions. - */ - -#include <stdio.h> -#include <string.h> -#include <stdlib.h> - -#define ENABLE_SSL - -#include "openvpn-plugin.h" - -/* - * Our context, where we keep our state. - */ -struct plugin_context { -  const char *username; -  const char *password; -}; - -/* - * Given an environmental variable name, search - * the envp array for its value, returning it - * if found or NULL otherwise. - */ -static const char * -get_env (const char *name, const char *envp[]) -{ -  if (envp) -    { -      int i; -      const int namelen = strlen (name); -      for (i = 0; envp[i]; ++i) -	{ -	  if (!strncmp (envp[i], name, namelen)) -	    { -	      const char *cp = envp[i] + namelen; -	      if (*cp == '=') -		return cp + 1; -	    } -	} -    } -  return NULL; -} - -OPENVPN_EXPORT int -openvpn_plugin_open_v3 (const int v3structver, -                        struct openvpn_plugin_args_open_in const *args, -                        struct openvpn_plugin_args_open_return *ret) -{ -  struct plugin_context *context = NULL; - -  /* Check that we are API compatible */ -  if( v3structver != OPENVPN_PLUGINv3_STRUCTVER ) { -    return OPENVPN_PLUGIN_FUNC_ERROR; -  } - -  /*  Which callbacks to intercept.  */ -  ret->type_mask = -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_UP) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_DOWN) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_ROUTE_UP) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_IPCHANGE) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_TLS_VERIFY) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_CLIENT_CONNECT_V2) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_CLIENT_DISCONNECT) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_LEARN_ADDRESS) | -    OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_TLS_FINAL); - - -  /* Allocate our context */ -  context = (struct plugin_context *) calloc (1, sizeof (struct plugin_context)); - -  /* Set the username/password we will require. */ -  context->username = "foo"; -  context->password = "bar"; - -  /* Point the global context handle to our newly created context */ -  ret->handle = (void *) context; - -  return OPENVPN_PLUGIN_FUNC_SUCCESS; -} - -void -show (const int type, const char *argv[], const char *envp[]) -{ -  size_t i; -  switch (type) -    { -    case OPENVPN_PLUGIN_UP: -      printf ("OPENVPN_PLUGIN_UP\n"); -      break; -    case OPENVPN_PLUGIN_DOWN: -      printf ("OPENVPN_PLUGIN_DOWN\n"); -      break; -    case OPENVPN_PLUGIN_ROUTE_UP: -      printf ("OPENVPN_PLUGIN_ROUTE_UP\n"); -      break; -    case OPENVPN_PLUGIN_IPCHANGE: -      printf ("OPENVPN_PLUGIN_IPCHANGE\n"); -      break; -    case OPENVPN_PLUGIN_TLS_VERIFY: -      printf ("OPENVPN_PLUGIN_TLS_VERIFY\n"); -      break; -    case OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY: -      printf ("OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY\n"); -      break; -    case OPENVPN_PLUGIN_CLIENT_CONNECT_V2: -      printf ("OPENVPN_PLUGIN_CLIENT_CONNECT_V2\n"); -      break; -    case OPENVPN_PLUGIN_CLIENT_DISCONNECT: -      printf ("OPENVPN_PLUGIN_CLIENT_DISCONNECT\n"); -      break; -    case OPENVPN_PLUGIN_LEARN_ADDRESS: -      printf ("OPENVPN_PLUGIN_LEARN_ADDRESS\n"); -      break; -    case OPENVPN_PLUGIN_TLS_FINAL: -      printf ("OPENVPN_PLUGIN_TLS_FINAL\n"); -      break; -    default: -      printf ("OPENVPN_PLUGIN_?\n"); -      break; -    } - -  printf ("ARGV\n"); -  for (i = 0; argv[i] != NULL; ++i) -    printf ("%d '%s'\n", (int)i, argv[i]); - -  printf ("ENVP\n"); -  for (i = 0; envp[i] != NULL; ++i) -    printf ("%d '%s'\n", (int)i, envp[i]); -} - -static void -x509_print_info (X509 *x509crt) -{ -  int i, n; -  int fn_nid; -  ASN1_OBJECT *fn; -  ASN1_STRING *val; -  X509_NAME *x509_name; -  X509_NAME_ENTRY *ent; -  const char *objbuf; -  unsigned char *buf; - -  x509_name = X509_get_subject_name (x509crt); -  n = X509_NAME_entry_count (x509_name); -  for (i = 0; i < n; ++i) -    { -      ent = X509_NAME_get_entry (x509_name, i); -      if (!ent) -	continue; -      fn = X509_NAME_ENTRY_get_object (ent); -      if (!fn) -	continue; -      val = X509_NAME_ENTRY_get_data (ent); -      if (!val) -	continue; -      fn_nid = OBJ_obj2nid (fn); -      if (fn_nid == NID_undef) -	continue; -      objbuf = OBJ_nid2sn (fn_nid); -      if (!objbuf) -	continue; -      buf = (unsigned char *)1; /* bug in OpenSSL 0.9.6b ASN1_STRING_to_UTF8 requires this workaround */ -      if (ASN1_STRING_to_UTF8 (&buf, val) <= 0) -	continue; - -      printf("X509 %s: %s\n", objbuf, (char *)buf); -      OPENSSL_free (buf); -    } -} - - - -OPENVPN_EXPORT int -openvpn_plugin_func_v3 (const int version, -                        struct openvpn_plugin_args_func_in const *args, -                        struct openvpn_plugin_args_func_return *retptr) -{ -  struct plugin_context *context = (struct plugin_context *) args->handle; - -  printf("\nopenvpn_plugin_func_v3() :::::>> "); -  show (args->type, args->argv, args->envp); - -  /* Dump some X509 information if we're in the TLS_VERIFY phase */ -  if ((args->type == OPENVPN_PLUGIN_TLS_VERIFY) && args->current_cert ) { -    printf("---- X509 Subject information ----\n"); -    printf("Certificate depth: %i\n", args->current_cert_depth); -    x509_print_info(args->current_cert); -    printf("----------------------------------\n"); -  } - -  /* check entered username/password against what we require */ -  if (args->type == OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY) -    { -      /* get username/password from envp string array */ -      const char *username = get_env ("username", args->envp); -      const char *password = get_env ("password", args->envp); - -      if (username && !strcmp (username, context->username) -	  && password && !strcmp (password, context->password)) -	return OPENVPN_PLUGIN_FUNC_SUCCESS; -      else -	return OPENVPN_PLUGIN_FUNC_ERROR; -    } -  else -    return OPENVPN_PLUGIN_FUNC_SUCCESS; -} - -OPENVPN_EXPORT void -openvpn_plugin_close_v1 (openvpn_plugin_handle_t handle) -{ -  struct plugin_context *context = (struct plugin_context *) handle; -  free (context); -} diff --git a/openvpn/src/plugins/examples/simple.c b/openvpn/src/plugins/examples/simple.c deleted file mode 100644 index f26d89f6..00000000 --- a/openvpn/src/plugins/examples/simple.c +++ /dev/null @@ -1,120 +0,0 @@ -/* - *  OpenVPN -- An application to securely tunnel IP networks - *             over a single TCP/UDP port, with support for SSL/TLS-based - *             session authentication and key exchange, - *             packet encryption, packet authentication, and - *             packet compression. - * - *  Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net> - * - *  This program is free software; you can redistribute it and/or modify - *  it under the terms of the GNU General Public License version 2 - *  as published by the Free Software Foundation. - * - *  This program is distributed in the hope that it will be useful, - *  but WITHOUT ANY WARRANTY; without even the implied warranty of - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - *  GNU General Public License for more details. - * - *  You should have received a copy of the GNU General Public License - *  along with this program (see the file COPYING included with this - *  distribution); if not, write to the Free Software Foundation, Inc., - *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA - */ - -/* - * This file implements a simple OpenVPN plugin module which - * will examine the username/password provided by a client, - * and make an accept/deny determination.  Will run - * on Windows or *nix. - * - * See the README file for build instructions. - */ - -#include <stdio.h> -#include <string.h> -#include <stdlib.h> - -#include "openvpn-plugin.h" - -/* - * Our context, where we keep our state. - */ -struct plugin_context { -  const char *username; -  const char *password; -}; - -/* - * Given an environmental variable name, search - * the envp array for its value, returning it - * if found or NULL otherwise. - */ -static const char * -get_env (const char *name, const char *envp[]) -{ -  if (envp) -    { -      int i; -      const int namelen = strlen (name); -      for (i = 0; envp[i]; ++i) -	{ -	  if (!strncmp (envp[i], name, namelen)) -	    { -	      const char *cp = envp[i] + namelen; -	      if (*cp == '=') -		return cp + 1; -	    } -	} -    } -  return NULL; -} - -OPENVPN_EXPORT openvpn_plugin_handle_t -openvpn_plugin_open_v1 (unsigned int *type_mask, const char *argv[], const char *envp[]) -{ -  struct plugin_context *context; - -  /* -   * Allocate our context -   */ -  context = (struct plugin_context *) calloc (1, sizeof (struct plugin_context)); - -  /* -   * Set the username/password we will require. -   */ -  context->username = "foo"; -  context->password = "bar"; - -  /* -   * We are only interested in intercepting the -   * --auth-user-pass-verify callback. -   */ -  *type_mask = OPENVPN_PLUGIN_MASK (OPENVPN_PLUGIN_AUTH_USER_PASS_VERIFY); - -  return (openvpn_plugin_handle_t) context; -} - -OPENVPN_EXPORT int -openvpn_plugin_func_v1 (openvpn_plugin_handle_t handle, const int type, const char *argv[], const char *envp[]) -{ -  struct plugin_context *context = (struct plugin_context *) handle; - -  /* get username/password from envp string array */ -  const char *username = get_env ("username", envp); -  const char *password = get_env ("password", envp); - -  /* check entered username/password against what we require */ -  if (username && !strcmp (username, context->username) -      && password && !strcmp (password, context->password)) -    return OPENVPN_PLUGIN_FUNC_SUCCESS; -  else -    return OPENVPN_PLUGIN_FUNC_ERROR; -} - -OPENVPN_EXPORT void -openvpn_plugin_close_v1 (openvpn_plugin_handle_t handle) -{ -  struct plugin_context *context = (struct plugin_context *) handle; -  free (context); -} diff --git a/openvpn/src/plugins/examples/simple.def b/openvpn/src/plugins/examples/simple.def deleted file mode 100755 index a87507d1..00000000 --- a/openvpn/src/plugins/examples/simple.def +++ /dev/null @@ -1,6 +0,0 @@ -LIBRARY   OpenVPN_PLUGIN_SAMPLE -DESCRIPTION "Sample OpenVPN plug-in module." -EXPORTS -   openvpn_plugin_open_v1   @1 -   openvpn_plugin_func_v1   @2 -   openvpn_plugin_close_v1  @3 diff --git a/openvpn/src/plugins/examples/winbuild b/openvpn/src/plugins/examples/winbuild deleted file mode 100755 index decf05f8..00000000 --- a/openvpn/src/plugins/examples/winbuild +++ /dev/null @@ -1,18 +0,0 @@ -# -# Build an OpenVPN plugin module on Windows/MinGW. -# The argument should be the base name of the C source file -# (without the .c). -# - -# This directory is where we will look for openvpn-plugin.h -INCLUDE="-I../../../include" - -CC_FLAGS="-O2 -Wall" - -gcc -DBUILD_DLL $CC_FLAGS $INCLUDE -c $1.c -gcc --disable-stdcall-fixup -mdll -DBUILD_DLL -o junk.tmp -Wl,--base-file,base.tmp $1.o -rm junk.tmp -dlltool --dllname $1.dll --base-file base.tmp --output-exp temp.exp --input-def $1.def -rm base.tmp -gcc --enable-stdcall-fixup -mdll -DBUILD_DLL -o $1.dll $1.o -Wl,temp.exp -rm temp.exp | 
