We also remove support for WiMAX (now unsupported by NetworkManager), and InfiniBand (Enterprise feature), and the use of the deprecated NM_SETTING_WIRELESS_SEC property. With help from network-manager-applet patches by Jiří Klimeš and Dan Winship. https://bugzilla.gnome.org/show_bug.cgi?id=765910
63 lines
2.4 KiB
C
63 lines
2.4 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
/* NetworkManager Connection editor -- Connection editor for NetworkManager
|
|
*
|
|
* 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.
|
|
*
|
|
* (C) Copyright 2008 - 2012 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __CE_PAGE_8021X_SECURITY_H
|
|
#define __CE_PAGE_8021X_SECURITY_H
|
|
|
|
#include <NetworkManager.h>
|
|
#include "wireless-security.h"
|
|
|
|
#include <glib.h>
|
|
#include <glib-object.h>
|
|
|
|
#include "ce-page.h"
|
|
|
|
#define CE_TYPE_PAGE_8021X_SECURITY (ce_page_8021x_security_get_type ())
|
|
#define CE_PAGE_8021X_SECURITY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CE_TYPE_PAGE_8021X_SECURITY, CEPage8021xSecurity))
|
|
#define CE_PAGE_8021X_SECURITY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CE_TYPE_PAGE_8021X_SECURITY, CEPage8021xSecurityClass))
|
|
#define CE_IS_PAGE_8021X_SECURITY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CE_TYPE_PAGE_8021X_SECURITY))
|
|
#define CE_IS_PAGE_8021X_SECURITY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CE_TYPE_PAGE_8021X_SECURITY))
|
|
#define CE_PAGE_8021X_SECURITY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CE_TYPE_PAGE_8021X_SECURITY, CEPage8021xSecurityClass))
|
|
|
|
typedef struct CEPage8021xSecurity CEPage8021xSecurity;
|
|
typedef struct CEPage8021xSecurityClass CEPage8021xSecurityClass;
|
|
|
|
struct CEPage8021xSecurity {
|
|
CEPage parent;
|
|
|
|
GtkSwitch *enabled;
|
|
GtkWidget *security_widget;
|
|
WirelessSecurity *security;
|
|
GtkSizeGroup *group;
|
|
gboolean initial_have_8021x;
|
|
};
|
|
|
|
struct CEPage8021xSecurityClass {
|
|
CEPageClass parent;
|
|
};
|
|
|
|
GType ce_page_8021x_security_get_type (void);
|
|
|
|
CEPage *ce_page_8021x_security_new (NMConnection *connection,
|
|
NMClient *client);
|
|
|
|
#endif /* __CE_PAGE_8021X_SECURITY_H */
|