summaryrefslogtreecommitdiffstats
path: root/knetworkmanager-0.8/src/knetworkmanager-connection_setting_wireless_security.h
diff options
context:
space:
mode:
Diffstat (limited to 'knetworkmanager-0.8/src/knetworkmanager-connection_setting_wireless_security.h')
-rw-r--r--knetworkmanager-0.8/src/knetworkmanager-connection_setting_wireless_security.h156
1 files changed, 156 insertions, 0 deletions
diff --git a/knetworkmanager-0.8/src/knetworkmanager-connection_setting_wireless_security.h b/knetworkmanager-0.8/src/knetworkmanager-connection_setting_wireless_security.h
new file mode 100644
index 0000000..187fd37
--- /dev/null
+++ b/knetworkmanager-0.8/src/knetworkmanager-connection_setting_wireless_security.h
@@ -0,0 +1,156 @@
+/***************************************************************************
+ *
+ * knetworkmanager-devicestore_dbus.h - A NetworkManager frontend for KDE
+ *
+ * Copyright (C) 2005, 2006 Novell, Inc.
+ *
+ * Author: Helmut Schaa <hschaa@suse.de>, <helmut.schaa@gmx.de>
+ *
+ * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ **************************************************************************/
+
+#ifndef KNETWORKMANAGER_CONNECTION_SETTING_WIRELESS_SECURITY_H
+#define KNETWORKMANAGER_CONNECTION_SETTING_WIRELESS_SECURITY_H
+
+#include <stdint.h>
+#include <tqhostaddress.h>
+#include <tqmap.h>
+#include <tqvariant.h>
+#include <tqobject.h>
+
+#include <tqdbusdata.h>
+
+#include "knetworkmanager-connection_setting.h"
+#include "qbidirectionalmap.h"
+/* NM */
+#include <nm-setting-wireless-security.h>
+#include <nm-setting-wireless.h>
+
+
+class AccessPoint;
+
+namespace ConnectionSettings
+{
+
+class WirelessSecurity;
+
+
+// setting for wireless security parameters
+class WirelessSecurity : public ConnectionSetting
+{
+ public:
+ // bitwise or-able ciphers
+ enum CIPHERS
+ {
+ CIPHER_NONE = 0
+ , CIPHER_TKIP = 1
+ , CIPHER_CCMP = 2
+ , CIPHER_WEP40 = 4
+ , CIPHER_WEP104 = 8
+ , CIPHER_AUTO = CIPHER_TKIP | CIPHER_CCMP
+ };
+
+ enum KEY_MGMT
+ {
+ KEY_MGMT_NONE = 0
+ , KEY_MGMT_IEEE8021X
+ , KEY_MGMT_WPA_NONE
+ , KEY_MGMT_WPA_PSK
+ , KEY_MGMT_WPA_EAP
+ };
+
+ enum AUTH_ALG
+ {
+ AUTH_ALG_NONE = 0
+ , AUTH_ALG_OPEN
+ , AUTH_ALG_SHARED
+ , AUTH_ALG_LEAP
+ };
+
+ // bitwise or-able protos
+ enum PROTO
+ {
+ PROTO_NONE = 0
+ , PROTO_AUTO = PROTO_NONE
+ , PROTO_WPA
+ , PROTO_RSN
+ };
+
+ WirelessSecurity(Connection* conn);
+ SettingsMap toMap() const;
+ void fromMap(const SettingsMap&);
+
+ SettingsMap toSecretsMap(bool with_settings = true) const;
+ bool fromSecretsMap(const SettingsMap&);
+
+ uint32_t getGroupCiphers(void) const;
+ void setGroupCiphers(uint32_t);
+
+ uint32_t getPairwiseCiphers(void) const;
+ void setPairwiseCiphers(uint32_t);
+
+ KEY_MGMT getKeyMgmt(void) const;
+ void setKeyMgmt(KEY_MGMT);
+
+ AUTH_ALG getAuthAlg(void) const;
+ void setAuthAlg(AUTH_ALG);
+
+ uint32_t getProto(void) const;
+ void setProto(uint32_t);
+ void addProto(uint32_t);
+ void delProto(uint32_t);
+
+ TQString getPSK(void) const;
+ void setPSK(const TQString&);
+
+ TQString getLeapUsername(void) const;
+ void setLeapUsername(const TQString&);
+
+ TQString getLeapPassword(void) const;
+ void setLeapPassword(const TQString&);
+
+ TQString getWepKey(int) const;
+ void setWepKey(int, TQString);
+
+ int getWepTxidx() const;
+ void setWepTxidx(int);
+
+ bool isValid() const;
+ bool getEnabled() const;
+
+ private:
+ // settigs
+ KEY_MGMT _keyMgmt;
+ int _wepTxKeyidx;
+ AUTH_ALG _authAlg;
+ uint32_t _proto;
+ uint32_t _pairwise;
+ uint32_t _group;
+ TQString _leapUsername;
+
+ // secrets
+ TQString _wepKey[4];
+ TQString _psk;
+ TQString _leapPassword;
+
+ TQBiDirectionalMap<KEY_MGMT, TQString> _keyMgmtMap;
+ TQBiDirectionalMap<AUTH_ALG, TQString> _authAlgMap;
+ TQBiDirectionalMap<PROTO, TQString> _protoMap;
+ TQBiDirectionalMap<CIPHERS, TQString> _cipherMap;
+};
+
+}
+#endif /* KNETWORKMANAGER_CONNECTION_SETTING_WIRELESS_SECURITY_H */