wpa_gui-qt4: Add support for selecting between WEP open/shared key auth

Split the auth=none option into three: open, WEP, WEP with shared key to
allow the user specify WEP with shared key authentication. In addition,
fix static WEP key edits to be enabled only when using static WEP keys
(i.e., not for IEEE 802.1X).
This commit is contained in:
Jouni Malinen 2009-02-10 15:26:26 +02:00 committed by Jouni Malinen
parent 4225097c5a
commit ec1020512c
3 changed files with 66 additions and 26 deletions

View file

@ -57,7 +57,17 @@
<widget class="QComboBox" name="authSelect" >
<item>
<property name="text" >
<string>Plaintext or static WEP</string>
<string>Plaintext (open / no authentication)</string>
</property>
</item>
<item>
<property name="text" >
<string>Static WEP (no authentication)</string>
</property>
</item>
<item>
<property name="text" >
<string>Static WEP (Shared Key authentication)</string>
</property>
</item>
<item>