57 lines
2.6 KiB
C
57 lines
2.6 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
/***************************************************************************
|
|
* nm-wireguard-editor.h : GNOME UI dialogs for configuring wireguard VPN connections
|
|
*
|
|
* Copyright (C) 2008 Dan Williams, <dcbw@redhat.com>
|
|
*
|
|
* 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; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
**************************************************************************/
|
|
|
|
#ifndef __NM_WIREGUARD_EDITOR_PLUGIN_H__
|
|
#define __NM_WIREGUARD_EDITOR_PLUGIN_H__
|
|
|
|
#define WIREGUARD_TYPE_EDITOR_PLUGIN (wireguard_editor_plugin_get_type ())
|
|
#define WIREGUARD_EDITOR_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), WIREGUARD_TYPE_EDITOR_PLUGIN, WireguardEditorPlugin))
|
|
#define WIREGUARD_EDITOR_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), WIREGUARD_TYPE_EDITOR_PLUGIN, WireguardEditorPluginClass))
|
|
#define WIREGUARD_IS_EDITOR_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), WIREGUARD_TYPE_EDITOR_PLUGIN))
|
|
#define WIREGUARD_IS_EDITOR_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), WIREGUARD_TYPE_EDITOR_PLUGIN))
|
|
#define WIREGUARD_EDITOR_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), WIREGUARD_TYPE_EDITOR_PLUGIN, WireguardEditorPluginClass))
|
|
|
|
typedef struct _WireguardEditorPlugin WireguardEditorPlugin;
|
|
typedef struct _WireguardEditorPluginClass WireguardEditorPluginClass;
|
|
|
|
struct _WireguardEditorPlugin {
|
|
GObject parent;
|
|
};
|
|
|
|
struct _WireguardEditorPluginClass {
|
|
GObjectClass parent;
|
|
};
|
|
|
|
GType wireguard_editor_plugin_get_type (void);
|
|
|
|
typedef NMVpnEditor *(*NMVpnEditorFactory) (NMVpnEditorPlugin *editor_plugin,
|
|
NMConnection *connection,
|
|
GError **error);
|
|
|
|
NMVpnEditor *
|
|
nm_vpn_editor_factory_wireguard (NMVpnEditorPlugin *editor_plugin,
|
|
NMConnection *connection,
|
|
GError **error);
|
|
|
|
#endif /* __NM_WIREGUARD_EDITOR_PLUGIN_H__ */
|
|
|