2008-12-18 11:08:35 +00:00
|
|
|
/*
|
|
|
|
* OpenVPN-GUI -- A Windows GUI for OpenVPN.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Mathias Sundman <mathias@nilings.se>
|
2010-08-13 15:42:23 +00:00
|
|
|
* 2010 Heiko Hund <heikoh@users.sf.net>
|
2008-12-18 11:08:35 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2016-04-19 22:25:32 +00:00
|
|
|
#ifndef OPENVPN_H
|
2010-08-13 15:42:23 +00:00
|
|
|
#define OPENVPN_H
|
2008-12-18 11:08:35 +00:00
|
|
|
|
2010-08-13 15:42:23 +00:00
|
|
|
BOOL StartOpenVPN(connection_t *);
|
|
|
|
void StopOpenVPN(connection_t *);
|
2008-12-18 11:08:35 +00:00
|
|
|
void SuspendOpenVPN(int config);
|
2017-01-23 03:01:29 +00:00
|
|
|
void RestartOpenVPN(connection_t *);
|
2010-06-29 14:12:17 +00:00
|
|
|
BOOL CheckVersion();
|
2008-12-18 11:08:35 +00:00
|
|
|
void SetStatusWinIcon(HWND hwndDlg, int IconID);
|
2010-08-13 15:42:23 +00:00
|
|
|
|
|
|
|
void OnReady(connection_t *, char *);
|
|
|
|
void OnHold(connection_t *, char *);
|
|
|
|
void OnLogLine(connection_t *, char *);
|
|
|
|
void OnStateChange(connection_t *, char *);
|
|
|
|
void OnPassword(connection_t *, char *);
|
|
|
|
void OnStop(connection_t *, char *);
|
2016-10-02 18:52:13 +00:00
|
|
|
void OnNeedOk(connection_t *, char *);
|
|
|
|
void OnNeedStr(connection_t *, char *);
|
2017-02-27 02:00:03 +00:00
|
|
|
void OnEcho(connection_t *, char *);
|
2018-01-28 16:40:12 +00:00
|
|
|
void OnByteCount(connection_t *, char *);
|
2010-08-13 15:42:23 +00:00
|
|
|
|
2017-01-09 02:54:00 +00:00
|
|
|
void ResetSavePasswords(connection_t *);
|
2016-03-21 12:43:41 +00:00
|
|
|
|
2011-03-24 16:48:26 +00:00
|
|
|
extern const TCHAR *cfgProp;
|
|
|
|
|
2016-02-22 13:12:55 +00:00
|
|
|
/* These error codes are from openvpn service sources */
|
|
|
|
#define ERROR_OPENVPN_STARTUP 0x20000000
|
|
|
|
#define ERROR_STARTUP_DATA 0x20000001
|
|
|
|
#define ERROR_MESSAGE_DATA 0x20000002
|
|
|
|
#define ERROR_MESSAGE_TYPE 0x20000003
|
|
|
|
|
2017-02-27 02:00:24 +00:00
|
|
|
/* Write a line to status window and optionally to the log file */
|
|
|
|
void WriteStatusLog (connection_t *c, const WCHAR *prefix, const WCHAR *line, BOOL fileio);
|
|
|
|
|
2010-08-13 15:42:23 +00:00
|
|
|
#endif
|