2007-10-22 Dan Williams <dcbw@redhat.com>

* libnm-util/nm-setting.c
		- (setting_wireless_security_verify): allow WEP-40 and WEP-104 as
			pairwise cipher options for Dynamic WEP



git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2995 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2007-10-22 13:58:04 +00:00
parent e55072d9bb
commit a7f3b960f4
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2007-10-22 Dan Williams <dcbw@redhat.com>
* libnm-util/nm-setting.c
- (setting_wireless_security_verify): allow WEP-40 and WEP-104 as
pairwise cipher options for Dynamic WEP
2007-10-21 Dan Williams <dcbw@redhat.com>
* src/NetworkManagerAP.c

View file

@ -789,7 +789,7 @@ setting_wireless_security_verify (NMSetting *setting, GHashTable *all_settings)
const char *valid_key_mgmt[] = { "none", "ieee8021x", "wpa-none", "wpa-psk", "wpa-eap", NULL };
const char *valid_auth_algs[] = { "open", "shared", "leap", NULL };
const char *valid_protos[] = { "wpa", "rsn", NULL };
const char *valid_pairwise[] = { "tkip", "ccmp", NULL };
const char *valid_pairwise[] = { "wep40", "wep104", "tkip", "ccmp", NULL };
const char *valid_groups[] = { "wep40", "wep104", "tkip", "ccmp", NULL };
const char *valid_eap[] = { "leap", "md5", "tls", "peap", "ttls", "sim", "psk", "fast", NULL };
const char *valid_phase1_peapver[] = { "0", "1", NULL };