You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
3.2 KiB

# OpenVPN-GUI -- A Windows GUI for OpenVPN.
#
# Copyright (C) 2004 Mathias Sundman <mathias@nilings.se>
# 2010 Heiko Hund <heikoh@users.sf.net>
#
# 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
RCCOMPILE = $(WINDRES) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS)
AUTOMAKE_OPTIONS = foreign 1.9
MAINTAINERCLEANFILES = \
config.log config.status \
$(srcdir)/Makefile.in $(srcdir)/configure \
$(srcdir)/config.h.in $(srcdir)/config.h.in~\
$(srcdir)/install-sh $(srcdir)/missing \
$(srcdir)/depcomp $(srcdir)/aclocal.m4 \
$(srcdir)/config.guess $(srcdir)/config.sub \
$(srcdir)/compile
SUBDIRS = . plap
bin_PROGRAMS = openvpn-gui
dist_doc_DATA = \
COPYRIGHT.GPL \
COPYING
AM_CPPFLAGS = $(OPENSSL_CRYPTO_CFLAGS) -D_UNICODE $(JSON_CFLAGS)
AM_CFLAGS = -municode
openvpn_gui_RESOURCES = \
res/openvpn-gui-res.rc \
res/openvpn-gui-res-cs.rc \
res/openvpn-gui-res-de.rc \
res/openvpn-gui-res-dk.rc \
res/openvpn-gui-res-en.rc \
res/openvpn-gui-res-es.rc \
res/openvpn-gui-res-fa.rc \
res/openvpn-gui-res-fi.rc \
res/openvpn-gui-res-fr.rc \
res/openvpn-gui-res-it.rc \
res/openvpn-gui-res-jp.rc \
res/openvpn-gui-res-kr.rc \
res/openvpn-gui-res-nl.rc \
res/openvpn-gui-res-no.rc \
res/openvpn-gui-res-pl.rc \
res/openvpn-gui-res-pt.rc \
res/openvpn-gui-res-ru.rc \
res/openvpn-gui-res-se.rc \
res/openvpn-gui-res-tr.rc \
res/openvpn-gui-res-ua.rc \
res/openvpn-gui-res-zh-hans.rc \
res/openvpn-gui-res-zh-hant.rc \
res/connected.ico \
res/connecting.ico \
res/disconnected.ico \
res/openvpn-gui.ico \
res/reconnecting.ico \
res/openvpn-gui.manifest
EXTRA_DIST = $(openvpn_gui_RESOURCES)
openvpn_gui_SOURCES = \
main.c main.h \
openvpn.c openvpn.h \
localization.c localization.h \
tray.c tray.h \
viewlog.c viewlog.h \
service.c service.h \
options.c options.h \
passphrase.c passphrase.h \
proxy.c proxy.h \
registry.c registry.h \
scripts.c scripts.h \
manage.c manage.h \
misc.c misc.h \
openvpn_config.c \
openvpn_config.h \
access.c access.h \
chartable.h \
save_pass.c save_pass.h \
env_set.c env_set.h \
Parse and display messages received by echo msg commands Process four new echo commands to construct messages to be displayed to the user: echo msg message-text echo msg-n message-text echo msg-window message-title echo msg-notify message-title Note: All rules of push and echo processing apply and determine what is received as echo commands by the GUI. In addition, 'url-encoded' characters (% followed by two hex digits) are decoded and displayed. The message is constructed in the GUI by concatenating the text specified in one or more "echo msg text" or "echo msg-n text" commands. In case of "echo msg text" text is appended with a new line. An empty text in this case will just add a new line. The message ends and gets displayed when one of the following are receieved: echo msg-window title echo msg-notify title where "title" becomes the title of the message window. In case of msg-window, a modeless window shows the message, in the latter case a notification balloon is shown. Example: when pushed from the server: push "echo msg I say let the world go to hell%2C" push "echo msg I must have my cup of tea." push "echo msg-window Notes from the underground" will display a modeless window with title "Notes from the underground" and a two line body -- I say let the world go to hell, I must have my cup of tea. -- Note that the message itself is not quoted in the above examples and so it relies on the server's option-parser combining individual words into a space separated string. Number of words on a line is limited by the maximum number of parameters allowed in openvpn commands (16). This limitation may be avoided by quoting the text that follows so that the option parser sees it as one parameter. The comma character is not allowed in pushed strings, so it has to be sent encoded as %2C as shown above. Such encoding of arbitrary bytes is suppored. For example, newlines may be embedded as %0A, though discouraged. Instead use multiple "echo msg" commands to separate lines by new line. An example with embedded spaces and multiple lines concatenated without a new line in between (note use of single quotes): push "echo msg-n I swear to you gentlemen%2C that to be" push "echo msg-n ' overly conscious is a sickness%2C ' " push "echo msg-n a real%2C thorough sickness." push "echo msg-notify Quote of the Day" will show up as a notification that displays for an OS-dependent interval as: -- Quote of the Day I swear to you gentlemen, that to be overly conscious is a sickness, a real, thorough sickness. -- where the location of the line break is automatically determined by the notification API and is OS version-dependent. Commands like "echo msg ..." in the config file are also processed the same way. It gets displayed when the GUI connects to the management interface and receives all pending echo. Pushed message(s) get displayed when the client daemon processes push-reply and passes on echo directives to the GUI. TODO: The actual window that displays the messages is implemented in the next commit. Signed-off-by: Selva Nair <selva.nair@gmail.com>
7 years ago
echo.c echo.h \
as.c as.h \
pkcs11.c pkcs11.h \
config_parser.c config_parser.h \
openvpn-gui-res.h
openvpn_gui_LDFLAGS = -mwindows
openvpn_gui_LDADD = \
openvpn-gui-res.o \
$(OPENSSL_CRYPTO_LIBS) \
-lws2_32 \
-lcomctl32 \
-lwinhttp \
-lwtsapi32 \
-lcrypt32 \
-lnetapi32 \
-lole32 \
Make options saved in registry editable by user Option ediitng dialogs are in two tabs: General and Advanced. Proxy related options are left in the proxy tab. Options config_dir, config_ext, log_dir, script timeouts and service-only flag are in the Advanced tab. All other more commonly used flags and options are in the General tab. - As options are editable, save values in registry only when they differ from the default values. This leaves the registry clean and makes changing options and their defaults during updates easier. - Entries for config_dir and log_dir must be absolute paths. Environemental variables such as %PROFILEDIR% may be used to construct these. - Empty config_dir, config_ext and log_dir entries are silently ignored (i.e., the current values are left unchanged). - Store all numeric and boolean parameters in registry as DWORD instead of strings. - On startup, the default parameters are loaded, then the registry is read and finally command-line parameters parsedi. - Out of range script timeout values in registry truncated with a warning instead of fatal error. This allows the user to access the settings dialog and make corrections. - Save proxy and language settings under the same HKCU\Software\OpenVPN-GUI key as other options instead of under Nilings. - Save the current version of the GUI in regsitry so that updates can be detected and any needed registry cleanup done. - If no version info is present in the registry any values in OpenVPN-GUI key in HKCU are deleted for a clean start as this is the first version to save registry values in HKCU. Language and proxy data if present under Nilings is migrated. Note: new controls in the General tab and newly added Advanced tab dialog are copied to all language files from the English version. These need to be translated. Signed-off-by: Selva Nair <selva.nair@gmail.com>
8 years ago
-lshlwapi \
-lsecur32 \
-lwininet \
$(JSON_LIBS)
openvpn-gui-res.o: $(openvpn_gui_RESOURCES) $(srcdir)/openvpn-gui-res.h
$(RCCOMPILE) -i $< -o $@