OpenVPN
|
Go to the source code of this file.
Functions | |
static DWORD | GetRegString (HKEY key, LPCWSTR value, LPWSTR data, DWORD size, LPCWSTR default_value) |
DWORD | GetOpenvpnSettings (settings_t *s) |
LPCWSTR | GetLastErrorText (void) |
DWORD | MsgToEventLog (DWORD flags, LPCWSTR format,...) |
wchar_t * | utf8to16_size (const char *utf8, int size) |
Convert a UTF-8 string to UTF-16. More... | |
const wchar_t * | get_win_sys_path (void) |
Variables | |
LPCWSTR | service_instance = L"" |
static wchar_t | win_sys_path [MAX_PATH] |
const wchar_t* get_win_sys_path | ( | void | ) |
Definition at line 264 of file common.c.
References ASSERT, and win_sys_path.
LPCWSTR GetLastErrorText | ( | void | ) |
Definition at line 184 of file common.c.
Referenced by CmdInstallServices(), CmdRemoveServices(), CmdStartService(), and MsgToEventLog().
DWORD GetOpenvpnSettings | ( | settings_t * | s | ) |
Definition at line 56 of file common.c.
References _L, settings_t::append, settings_t::config_dir, settings_t::exe_path, settings_t::ext_string, GetRegString(), settings_t::log_dir, M_ERR, M_SYSERR, MsgToEventLog(), OVPN_ADMIN_GROUP, settings_t::ovpn_admin_group, PACKAGE_NAME, settings_t::priority, service_instance, and status.
Referenced by ServiceStartInteractive().
|
static |
Definition at line 31 of file common.c.
References _L, M_SYSERR, MsgToEventLog(), PACKAGE_NAME, service_instance, and status.
Referenced by GetOpenvpnSettings().
DWORD MsgToEventLog | ( | DWORD | flags, |
LPCWSTR | format, | ||
... | |||
) |
Definition at line 215 of file common.c.
References APPNAME, GetLastErrorText(), msg, MSG_FLAGS_ERROR, MSG_FLAGS_SYS_CODE, and service_instance.
Referenced by AddDnsSearchDomains(), ApplyDnsSettings(), BlockDNSErrHandler(), CreateClientPipeInstance(), DeleteWfpBlock(), DuplicateAndMapRing(), ExecCommand(), GetInterfacesKey(), GetOpenvpnSettings(), GetRegString(), GetStartupData(), GetTokenGroups(), HandleMessage(), HandleRegisterRingBuffers(), InitialSearchListExists(), InterfaceIdString(), IsAuthorizedUser(), IsUserInGroup(), OvpnDuplicateHandle(), RegisterDNS(), RemoveDnsSearchDomains(), ReportStatusToSCMgr(), ResetDnsSearchDomains(), ReturnError(), RunOpenvpn(), ServiceStartInteractive(), SetDnsSearchDomains(), SetNameServersValue(), StoreInitialDnsSearchList(), and wmain().
wchar_t* utf8to16_size | ( | const char * | utf8, |
int | size | ||
) |
Convert a UTF-8 string to UTF-16.
The size parameter can be used to convert strings which contain inline NUL characters, like MULTI_SZ strings used as values in the registry do, or (sub)strings that are not zero terminated. If size is -1 the length of the string is determined automatically by the WIN32 API. Make sure you pass a terminated string or else bad things will happen. Note that the size you pass should always include the terminating zero as well.
If the returned string is not NULL it must be freed by the caller.
utf8 | const string to be converted |
size | the size of the string |
Definition at line 251 of file common.c.
Referenced by utf8to16().
LPCWSTR service_instance = L"" |
Definition at line 27 of file common.c.
Referenced by CreateClientPipeInstance(), GetOpenvpnSettings(), GetRegString(), MsgToEventLog(), RunOpenvpn(), and wmain().
|
static |
Definition at line 28 of file common.c.
Referenced by get_win_sys_path().