summaryrefslogtreecommitdiffstats
path: root/usr.sbin/wpa
Commit message (Collapse)AuthorAgeFilesLines
* Update for hostapd & wpa_supplicant 0.6.10.rpaulo2010-06-144-484/+2
|
* mdoc: move remaining sections into consistent orderuqs2010-05-131-5/+5
| | | | | | | This pertains mostly to FILES, HISTORY, EXIT STATUS and AUTHORS sections. Found by: mdocml lint run Reviewed by: ru
* Add WPA-None support:bschmidt2010-04-102-3/+34
| | | | | | | | | | | | | | | | | | * WPA-None requires ap_scan=2: The major difference between ap_scan=1 (default) and 2 is, that no IEEE80211_IOC_SCAN* ioctls/functions are called, though, there is a dependency on those. For example the call to wpa_driver_bsd_scan() sets the interface UP, this never happens, therefore the interface must be marked up in wpa_driver_bsd_associate(). IEEE80211_IOC_SSID also is not called, which means that the SSID has not been set prior to the IEEE80211_MLME_ASSOC call. * WPA-None has no support for sequence number updates, it doesn't make sense to check for replay violations.. * I had some crashes right after the switch to RUN state, issue is that sc->sc_lastrs was not yet defined. Approved by: rpaulo (mentor) MFC after: 3 weeks
* Enable _DIRENT_HAVE_D_TYPE so wpa_cli scans directories properlysam2009-08-231-0/+2
| | | | | | | | for it's unix domain socket. Before this change wpa_cli would take the first file in the directory that was not "." or "..". Submitted by: Brandon Gooch <jamesbrandongooch@gmail.com> MFC after: 3 days
* fix Jouni's email addresssam2009-07-127-7/+7
| | | | Approved by: re (blanket)
* o Fix usage() prototype [1] and correct its call.maxim2009-06-231-2/+2
| | | | Submitted by: ed [1]
* o style(9) usage() definition: it doesn't need an argument.maxim2009-06-231-3/+2
|
* o Remove unneeded argument in fprintf(3) call in usage().maxim2009-06-231-1/+1
| | | | Submitted by: Pawel Worach
* Do not force the mtu to 2290; this was done to insure large EAPOL framessam2009-06-051-12/+0
| | | | | | | | | could be handled w/o fragmentation but clobbers user-specified values such as those required when the interface is bridged. Submitted by: jim@netgate.com Reviewed by: Jouni Malinen MFC after: 3 days
* no need to for gnu89 any moresam2009-03-151-2/+0
|
* Fix build breakage due to the interplay between r189801 and r189824.das2009-03-141-0/+2
| | | | | | | In particular, vendor sources that aren't ready for gnu99 should still be compiled with gnu89. (Before r189824, these would have generated warnings if you tried to compile them in gnu99 mode, but the warnings went unheeded due to -Wno-error.)
* uupdate for 0.6.8sam2009-03-021-2/+3
|
* update for 0.6.8sam2009-03-021-4/+2
|
* update for 0.6.8sam2009-03-021-2/+3
|
* update to 0.6.8sam2009-03-028-96/+107
| | | | Reviewed by: thompsa
* use ansi prototypessam2009-03-011-11/+4
| | | | Submitted by: Pawel Worach <pawel.worach@gmail.com>
* 'Strict EAP conformance' makes more sense here than 'String EAPimp2008-11-211-1/+1
| | | | conformance.'
* - install the example wpa_supplicant.conf file to the share/examples/etcdanger2008-07-012-1/+6
| | | | | | | | | | directory [1] - add the FILES section to the wpa_supplicant.conf.5 file, so that people will be able to detect the example configuration file easier. [2] PR: docs/121821 [2] Approved by: brooks [1] MFC after: 3 days
* o update for vapssam2008-04-203-21/+314
| | | | | | o add private wired driver that fixes various bugs in the vendor version Submitted by: thompsa (ndis fixups)
* o update for vapssam2008-04-202-112/+160
| | | | | | | o add+enable radius acl support Supported by: Hobnob Submitted by: Chris Zimmermann (acl support)
* enable syslog support and add -s option to the man pagesam2008-03-242-2/+7
| | | | MFC after: 3 weeks
* Add some missing Xrefs to drivers.brueffer2008-02-211-1/+5
| | | | MFC after: 3 days
* enable wired driver supportsam2007-12-201-0/+2
| | | | | Submitted by: "Paul B. Mahol" <onemda@gmail.com> MFC after: 1 week
* install hostapd.conf and related files for folks that don't have sourcesam2007-11-101-0/+5
| | | | MFC after: 1 week
* fix building w/ WITHOUT_WPA_SUPPLICANT_EAPOLsam2007-11-101-8/+19
| | | | MFC after: 1 week
* install sample wpa_supplicant.conf; not everyone has source to referencesam2007-11-101-1/+5
|
* Change wpa_supplicant to down the interface at the start of the init routine.thompsa2007-11-051-3/+12
| | | | | | | | | | | | | | | | | | wpa_supplicant expects that it has exclusive access to the net80211 state so when its starts poking in the WEP/WPA settings and the card is already scanning it can cause net80211 to try and associate incorrectly with a protected AP. This is an inconvenience for firmware based cards such as iwi where it can be sent an auth instruction with incomplete security info and cause a firmware error. Remove the 'ifconfig up' from network.subr since wpa_supplicant will immediately down the interface again. Reported by: Guy Helmer (and others) Reviewed by: sam, brooks, avatar MFC after: 3 days
* Document the '-P pidfile' command line argument.simon2007-10-261-1/+5
| | | | | | PR: docs/116658 Submitted by: Henrik Brix Andersen <henrik@brixandersen.dk> MFC after: 3 days
* Update for libpcap 0.9.8mlaier2007-10-161-6/+7
|
* Remove a -N flag.kevlo2007-10-021-6/+0
| | | | | Reviewed by: sam Approved by: re (kensmith)
* fix building with NO_CRYPT=truesam2007-09-281-0/+3
| | | | | PR: 116439 Approved by: re (gnn)
* o enable use of EAP methods w/o modification to the base system; usesam2007-09-252-6/+145
| | | | | | | | | | WPA_SUPPLICANT_CFLAGS, etc. (consult the Makefile's for details) o enable ipv6 support in hostapd (for communication w/ a radius backend) PR: bin/116164 Submitted by: "Scot Hetzel" <swhetzel@gmail.com> Approved by: re (gnn) MFC after: 2 weeks
* Remove stray comma left over from previous commit.brueffer2007-09-071-1/+1
| | | | Approved by: re (blanket)
* - Remove reference for unexisting ndisapi(9)gabor2007-09-071-2/+1
| | | | | | | | PR: docs/113127 Submitted by: "O. Hartmann"<ohartman@mail.zedat.fu-berlin.de> Reviewed by: keramida Approved by: re (bmah) MFC after: 3 days
* The wpa_passphrase(8) manual page states that it first appeared insimon2007-07-171-2/+2
| | | | | | | | | | | FreeBSD 6.2, but it didn't make it into RELENG_6_2. Update the manual page to say "FreeBSD 6.3". PR: docs/114429 Submitted by: Henrik Brix Andersen <henrik@brixandersen.dk> MFC after: 3 days Approved by: re (bmah)
* update for wpa_supplicant 0.5.8 import:sam2007-07-115-6/+48
| | | | | | | | | | | o unix domain socket to wpa_cli is configured w/ CONFIG_CTRL_IFACE_UNIX o terminate on last interface option is configured w/ CONFIG_TERMINATE_ONLASTIF o ndis/Packet32.c fixups to force roaming mode to manual o document new mixed_cell config knob Submitted by: thompsa (Packet32.c) Reviewed by: thompsa, sephe Approved by: re (hrs)
* update for 0.5.8 importsam2007-07-093-74/+81
| | | | Approved by: re (hrs)
* fixup mcast handling in bpf program; this enables forthcoming supportsam2007-07-091-4/+12
| | | | | | | for 802.1x over wired interfaces Submitted by: Jouke Witteveen Approved by: re (hrs)
* track net80211 changes to get scan results ioctlsam2007-06-111-5/+5
|
* must byte swap key rsc for big-endian systemssam2007-04-261-0/+1
| | | | | Obtained from: netbsd MFC after: 1 week
* add wpa_passphrase utility to the buildsam2006-11-174-2/+87
| | | | | | PR: bin/104457 Submitted by: Henrik Brix Andersen MFC after: 1 week
* Markup fixes.ru2006-09-292-12/+20
|
* incorporate Rui Paulo's worksam2006-09-021-2/+156
| | | | Obtained from: netbsd
* avoid null ptr derefsam2006-05-271-5/+6
| | | | Obtained from: netbsd
* correct static array overrunsam2006-05-271-1/+1
| | | | Obtained from: netbsd
* add debug msgsam2006-04-201-0/+3
|
* remove some unnecessary perror callssam2006-04-171-2/+0
| | | | | Noticed by: Jouni Malinen MFC after: 2 weeks
* Add missing library dependencies.ru2006-04-131-1/+1
|
* adapt PacketGetAdapterNames to 0.4.8 calling conventionsam2006-04-121-6/+6
| | | | | | PR: bin/94735 Submitted by: Scot Hetzel <swhetzel@gmail.com> Requested by: scottl
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-2/+4
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
OpenPOWER on IntegriCloud