summaryrefslogtreecommitdiffstats
path: root/usr.sbin/wpa/hostapd
Commit message (Collapse)AuthorAgeFilesLines
* Merge hostapd / wpa_supplicant 2.0.rpaulo2013-07-042-839/+30
| | | | Reviewed by: adrian (driver_bsd + usr.sbin/wpa)
* Xref mwl(4) and rum(4) in hostapd(8).gjb2012-07-181-1/+3
| | | | MFC after: 3 days
* Reword hostapd.conf(5) sentence.gjb2012-05-161-2/+2
| | | | | | Suggested by: hrs MFC after: 3 days X-MFC-With: r235337 (a bit delayed...)
* Remove end of line whitespace.joel2012-05-121-1/+1
|
* General mdoc(7) and typo fixes.gjb2012-05-121-1/+1
| | | | | | PR: 167804 Submitted by: Nobuyuki Koganemaru (kogane!jp.freebsd.org) MFC after: 3 days
* Fix WITHOUT_EXAMPLES build:bschmidt2012-04-291-1/+2
| | | | | | | | | While removing unnecessary entries from .PATH.c I missed that for the examples WPA_SUPPLICANT_DISTDIR/HOSTAPD_DISTDIR is explicitly added to .PATH. Tested by: lev MFC after: 2 weeks
* Move crypto stuff into a common Makefile. While here fix thebschmidt2012-04-281-44/+12
| | | | | | | | WITHOUT_OPENSSL build by using the wpa's internal crypto support if openssl is not available, this allows us to unconditionally enable EAP support. MFC after: 2 weeks
* not only the file names have changed from eap_xxx.c to eap_server_xxx.c,bschmidt2012-04-281-5/+5
| | | | | | the defines too MFC after: 2 weeks
* Add a note to hostapd.conf about an unhelpful error message in the hope thattheraven2012-04-271-1/+2
| | | | | | it won't confuse anyone else in the future. MFC after: 1 week
* fix EAP server support after the 0.7.3 import:bschmidt2012-04-261-54/+101
| | | | | | | | | | | | | | | - eap_xxx.c files have been renamed to eap_server_xxx.c - additional crypto files are required for some options - EAP_MD5 and EAP_GTC is now enabled by default to match vendor config - move each file on its own line to hopefully make further diffs easier to read EAP_SERVER is now enabled by default. Fiddling with HOSTAPD_CFLAGS in src.conf is no longer required to get a basic WPA-EAP/radius setup running. Tested by: Johann Hugo <jhugo at meraka.csir.co.za> MFC after: 2 weeks
* Mention run(4)kevlo2012-02-091-0/+1
|
* Spelling fixes for usr.sbin/uqs2011-12-301-3/+3
|
* Fix build on bigendian archs.bschmidt2010-12-191-0/+1
|
* Unbreak hostapd. This code has been explicitly removed in upstream versions.bschmidt2010-12-181-33/+4
|
* Fix some whitespace nits.bschmidt2010-12-181-22/+22
|
* Change order in wpa_driver_bsd_ops to match upstream code. Add descriptionbschmidt2010-12-181-6/+7
| | | | while here.
* Add a comment explaining the undefs, while here remove one which is notbschmidt2010-12-181-1/+4
| | | | required.
* Rename bsd_set_iface_flags to bsd_ctrl_iface and change arguments to matchbschmidt2010-12-181-15/+27
| | | | upstream. For the same reason rewrite bsd_get_seqnum.
* Import bsd_configure_wpa() to sync with upstream code.bschmidt2010-12-181-1/+12
|
* Prefer os_memset, os_strlcpy and os_free. While here adjust the returnbschmidt2010-12-181-13/+13
| | | | | value checks for 2 ioctl calls and rewrite error handling in bsd_init to better integrate with upstream code.
* Remove some unused variables and unnecessary casts.bschmidt2010-12-181-23/+12
|
* Remove debug messages which are no longer present in upstream code. Whilebschmidt2010-12-181-10/+4
| | | | here remove some explicit line breaks.
* Rename iface to ifname to match the upstream code.bschmidt2010-12-181-8/+9
|
* Rename ioctl_sock to just sock to match the upstream code. While herebschmidt2010-12-181-15/+12
| | | | remove the no longer used wext_sock and bsd_driver_ops variables.
* Move some functions around to match the upstream order.bschmidt2010-12-181-208/+206
|
* Add bsd_send_mlme_param to aggregate IEEE80211_IOC_MLME ioctls:bschmidt2010-12-181-40/+25
| | | | | | - merge bsd_set_sta_authorized and bsd_sta_set_flags - change bsd_set_sta_authorized, bsd_sta_deauth and bsd_sta_disassoc to use bsd_send_mlme_param
* Change bsd_del_key() to match upstream code:bschmidt2010-12-181-11/+9
| | | | | | | - change order of if/else - move wpa_printf() into the condition - change unsigned char* to u8* - prefer os_memset/os_memcpy
* Aggregate SIOCS80211 and SIOCG80211 ioctl request code. While here, bringbschmidt2010-12-181-43/+40
| | | | the wpa_printf()/perror() messages in sync with upstream code.
* Adapt for wpa_supplicant / hostapd 0.7.3.rpaulo2010-11-032-236/+170
|
* Update for hostapd & wpa_supplicant 0.6.10.rpaulo2010-06-141-1/+1
|
* fix Jouni's email addresssam2009-07-122-2/+2
| | | | Approved by: re (blanket)
* 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
* update to 0.6.8sam2009-03-022-79/+53
| | | | Reviewed by: thompsa
* o update for vapssam2008-04-202-112/+160
| | | | | | | o add+enable radius acl support Supported by: Hobnob Submitted by: Chris Zimmermann (acl support)
* install hostapd.conf and related files for folks that don't have sourcesam2007-11-101-0/+5
| | | | MFC after: 1 week
* 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
* o enable use of EAP methods w/o modification to the base system; usesam2007-09-251-5/+83
| | | | | | | | | | 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
* update for 0.5.8 importsam2007-07-092-74/+78
| | | | Approved by: re (hrs)
* Markup fixes.ru2006-09-291-3/+4
|
* 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
* update for v0.4.8 import of wpa_supplicant and hostapdsam2006-03-071-7/+37
| | | | MFC after: 2 weeks
* explicitly set IEEE80211_KEY_GROUP instead of depending on kernel kludgesam2005-07-051-1/+1
| | | | | Reviewed by: avatar Approved by: re (scottl)
* Tidy up the markup (fixing some nearby content bugs).ru2005-06-272-23/+38
| | | | | Timeout from: sam Approved by: re (blanket manpages)
* o move hostapd to section 8sam2005-06-173-2/+54
| | | | | | o add placeholder for hostapd.conf Approved by: re (blanket wpa)
* freebsd pieces of hostapd supportsam2005-06-063-0/+1013
OpenPOWER on IntegriCloud