OpenVPN
Functions | Variables
main.c File Reference
#include "tap.h"
#include "error.h"
#include <objbase.h>
#include <setupapi.h>
#include <stdio.h>
#include <wchar.h>
Include dependency graph for main.c:

Go to the source code of this file.

Functions

static void usage (void)
 Print the help message. More...
 
static BOOL is_adapter_name_available (LPCWSTR name, struct tap_adapter_node *adapter_list, BOOL log)
 Checks if adapter with given name doesn't already exist. More...
 
static LPWSTR get_unique_adapter_name (LPCWSTR hwid, struct tap_adapter_node *adapter_list)
 Returns unique adapter name based on hwid or NULL if name cannot be generated. More...
 
int __cdecl wmain (int argc, LPCWSTR argv[])
 Program entry point. More...
 
bool dont_mute (unsigned int flags)
 Check muting filter. More...
 
void x_msg_va (const unsigned int flags, const char *format, va_list arglist)
 

Variables

const WCHAR title_string []
 
static const WCHAR usage_message []
 
static const WCHAR usage_message_create []
 
static const WCHAR usage_message_list []
 
static const WCHAR usage_message_delete []
 

Function Documentation

◆ dont_mute()

bool dont_mute ( unsigned int  flags)

Check muting filter.

Definition at line 471 of file main.c.

◆ get_unique_adapter_name()

static LPWSTR get_unique_adapter_name ( LPCWSTR  hwid,
struct tap_adapter_node adapter_list 
)
static

Returns unique adapter name based on hwid or NULL if name cannot be generated.

Caller is responsible for freeing it.

Definition at line 158 of file main.c.

References _L, is_adapter_name_available(), and TAP_WIN_COMPONENT_ID.

Referenced by wmain().

◆ is_adapter_name_available()

static BOOL is_adapter_name_available ( LPCWSTR  name,
struct tap_adapter_node adapter_list,
BOOL  log 
)
static

Checks if adapter with given name doesn't already exist.

Definition at line 131 of file main.c.

References tap_adapter_node::pNext.

Referenced by get_unique_adapter_name(), and wmain().

◆ usage()

static void usage ( void  )
static

Print the help message.

Definition at line 120 of file main.c.

References title_string, and usage_message.

Referenced by wmain().

◆ wmain()

int __cdecl wmain ( int  argc,
LPCWSTR  argv[] 
)

◆ x_msg_va()

void x_msg_va ( const unsigned int  flags,
const char *  format,
va_list  arglist 
)

Definition at line 480 of file main.c.

References M_ERRNO.

Variable Documentation

◆ title_string

const WCHAR title_string[]
Initial value:

Definition at line 40 of file main.c.

Referenced by usage(), and wmain().

◆ usage_message

const WCHAR usage_message[]
static
Initial value:
=
L"%ls\n"
L"\n"
L"Usage:\n"
L"\n"
L"tapctl <command> [<command specific options>]\n"
L"\n"
L"Commands:\n"
L"\n"
L"create Create a new TUN/TAP adapter\n"
L"list List TUN/TAP adapters\n"
L"delete Delete specified network adapter\n"
L"help Display this text\n"
L"\n"
L"Hint: Use \"tapctl help <command>\" to display help for particular command.\n"

Definition at line 44 of file main.c.

Referenced by usage().

◆ usage_message_create

const WCHAR usage_message_create[]
static
Initial value:
=
L"%ls\n"
L"\n"
L"Creates a new TUN/TAP adapter\n"
L"\n"
L"Usage:\n"
L"\n"
L"tapctl create [<options>]\n"
L"\n"
L"Options:\n"
L"\n"
L"--name <name> Set TUN/TAP adapter name. Should the adapter with given name \n"
L" already exist, an error is returned. If this option is not \n"
L" specified, a default adapter name is chosen by Windows. \n"
L" Note: This name can also be specified as OpenVPN's --dev-node \n"
L" option. \n"
L"--hwid <hwid> Adapter hardware ID. Default value is root\\tap0901, which \n"
L" describes tap-windows6 driver. To work with wintun or ovpn-dco \n"
L" driver, specify 'wintun' or 'ovpn-dco'. \n"
L"\n"
L"Output:\n"
L"\n"
L"This command prints newly created TUN/TAP adapter's GUID to stdout. \n"

Definition at line 61 of file main.c.

Referenced by wmain().

◆ usage_message_delete

const WCHAR usage_message_delete[]
static
Initial value:
=
L"%ls\n"
L"\n"
L"Deletes the specified network adapter\n"
L"\n"
L"Usage:\n"
L"\n"
L"tapctl delete <adapter GUID | adapter name>\n"

Definition at line 105 of file main.c.

Referenced by wmain().

◆ usage_message_list

const WCHAR usage_message_list[]
static
Initial value:
=
L"%ls\n"
L"\n"
L"Lists TUN/TAP adapters\n"
L"\n"
L"Usage:\n"
L"\n"
L"tapctl list\n"
L"\n"
L"Options:\n"
L"\n"
L"--hwid <hwid> Adapter hardware ID. By default, root\\tap0901, tap0901, wintun and \n"
L" ovpn-dco adapters are listed. Use this switch to limit the list.\n"
L"\n"
L"Output:\n"
L"\n"
L"This command prints all TUN/TAP adapters to stdout. \n"

Definition at line 86 of file main.c.

Referenced by wmain().

_L
#define _L(q)
Definition: basic.h:37
PACKAGE_NAME
#define PACKAGE_NAME
Definition: config.h:492
PACKAGE_VERSION
#define PACKAGE_VERSION
Definition: config.h:504