aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/wlandebug
Commit message (Collapse)AuthorAgeFilesLines
* Remove residual blank line at start of MakefileWarner Losh2024-07-151-1/+0
| | | | | | | This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
* wlandebug: Use nitems(foo) instead of sizeof(foo)/sizeof(foo[0])Elyes Haouas2024-04-291-2/+2
| | | | | Pull Request: https://github.com/freebsd/freebsd-src/pull/888 Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
* Remove $FreeBSD$: two-line nroff patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-162-2/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
* wlandebug: Fix typosElyes Haouas2023-06-021-1/+1
| | | | | | Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/653
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-121-1/+1
| | | | | | | | | The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of BSD-2-Clause. Discussed with: pfg MFC After: 3 days Sponsored by: Netflix
* Update/fix Makefile.depend for userlandSimon J. Gerraty2023-04-191-1/+1
|
* wlandebug.8: remove Xref for missing manpagesFernando ApesteguĂ­a2021-03-151-4/+6
| | | | | | | | | | | | | | | | | | | | | Remove references for: athdebug(8), athstats(8) and wlanstats(8) Those are tools in the tools/ directory that are not built as part of the base system. According to the toolds/README file: "...these tools are not meant to be built as part of the standard system..." Even more, the tools/tools/README is not udpated and wlanstats does not even built on current: error: cast from 'struct sockaddr *' to 'const struct sockaddr_dl *' increases required alignment from 1 to 2 [-Werror,-Wcast-align] PR: 227174 Reported by: freebsd.org@alexandrews.me.uk Reviewed by: gbe@ adrian@ Approved by: gbe@ (mentor) adrian@ Differential Revision: https://reviews.freebsd.org/D29033
* wlandebug: Add include path for libifconfig as it is a internallibEmmanuel Vadot2020-03-251-0/+1
| | | | | | | | Reviewed by: bapt Differential Revision: https://reviews.freebsd.org/D24172 Notes: svn path=/head/; revision=359291
* Revert r344211: wlandebug: disable PIE to fix build failureEd Maste2019-02-251-1/+0
| | | | | | | | As of r344530 libifconfig is built as a standard INTERNALLIB and the wlandebug PIE workaround from r344211 can be removed. Notes: svn path=/head/; revision=344532
* wlandebug: disable PIE to fix build failureEd Maste2019-02-161-0/+1
| | | | | | | | | | libifconfig is built as a static-only PRIVATELIB (and there is no _pie.a version) so disable PIE in libifconfig's consumer. Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=344211
* libifconfig: multiple feature additionsAlan Somers2018-02-231-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added the ability to: * Create virtual interfaces * Create vlan interfaces * Get interface fib * Get interface groups * Get interface status * Get nd6 info * Get media status * Get additional ifaddr info in a convenient struct * Get vhids * Get carp info * Get lagg and laggport status * Iterate over all interfaces and ifaddrs And add more examples, too. Note that this is a backwards-incompatible change. But that's ok, because it's a private library. MFC after: 3 weeks Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D14463 Notes: svn path=/head/; revision=329853
* various: general adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. No functional change intended. Notes: svn path=/head/; revision=326276
* wlandebug(8): allow fallback to old behavior + improve name checks.Andriy Voskoboinyk2017-11-191-4/+8
| | | | | | | | - Treat passed interface name as original if ifconfig_get_orig_name() fails. - Reject interface name if it does not start from "wlan". Notes: svn path=/head/; revision=326000
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+1
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
* wlandebug(8): add a sanity check.Andriy Voskoboinyk2017-10-161-0/+3
| | | | Notes: svn path=/head/; revision=324658
* wlandebug(8): obtain original interface name via ifconfig_get_orig_name()Andriy Voskoboinyk2017-10-162-3/+20
| | | | Notes: svn path=/head/; revision=324657
* Belatedly fix documentation on which interface to use as argument.Gleb Smirnoff2015-08-171-3/+3
| | | | Notes: svn path=/head/; revision=286840
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+18
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Merge from head@274682Simon J. Gerraty2014-11-191-1/+1
| |\ | |/ |/| | | Notes: svn path=/projects/bmake/; revision=274683
| * Updated dependenciesSimon J. Gerraty2014-05-161-1/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=266219
| * Updated dependenciesSimon J. Gerraty2014-05-101-0/+2
| | | | | | | | Notes: svn path=/projects/bmake/; revision=265802
| * Merge headSimon J. Gerraty2014-04-281-3/+3
| |\ | | | | | | | | | Notes: svn path=/projects/bmake/; revision=265044
| * | Updated dependenciesSimon J. Gerraty2013-03-111-0/+1
| | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=248169
| * | Updated dependenciesSimon J. Gerraty2013-02-161-2/+0
| | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=246868
| * | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.Marcel Moolenaar2012-08-221-0/+19
| | | | | | | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net> Notes: svn path=/projects/bmake/; revision=239572
* | | Fix a typo to catch correct condition.Hiren Panchasara2014-08-251-1/+1
| |/ |/| | | | | Notes: svn path=/head/; revision=270518
* | Fix stray "." left over from previous commit.Christian Brueffer2014-04-101-1/+1
| | | | | | | | | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=264316
* | Fix Xref order in SEE ALSO.Christian Brueffer2014-04-101-2/+2
|/ | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=264315
* Remove trailing whitespace per mdoc lint warningEitan Adler2012-03-291-1/+1
| | | | | | | | | | Disussed with: gavin No objection from: doc Approved by: joel MFC after: 3 days Notes: svn path=/head/; revision=233648
* The last big commit: let usr.sbin/ use WARNS=6 by default.Ed Schouten2010-01-021-0/+2
| | | | Notes: svn path=/head/; revision=201390
* add mesh supportSam Leffler2009-07-172-17/+9
| | | | | | | | Submitted by: rpaulo Approved by: re (kib) Notes: svn path=/head/; revision=195746
* TDMA support for long distance point-to-point links using ath devices:Sam Leffler2009-01-081-3/+3
| | | | | | | | | | | | | | | | | | o add net80211 support for a tdma vap that is built on top of the existing adhoc-demo support o add tdma scheduling of frame transmission to the ath driver; it's conceivable other devices might be capable of this too in which case they can make use of the 802.11 protocol additions etc. o add minor bits to user tools that need to know: ifconfig to setup and configure, new statistics in athstats, and new debug mask bits While the architecture can support >2 slots in a TDMA BSS the current design is intended (and tested) for only 2 slots. Sponsored by: Intel Notes: svn path=/head/; revision=186904
* misc cleanups for stricter compilationSam Leffler2008-05-281-14/+4
| | | | Notes: svn path=/head/; revision=179398
* update copyright year and nuke dual-gpl bits that should've removed long agoSam Leffler2008-05-281-8/+1
| | | | Notes: svn path=/head/; revision=179397
* -d is a flag, not an argument. Use .Fl here.Andrew Thompson2008-05-201-1/+1
| | | | Notes: svn path=/head/; revision=179160
* Remove -, .Ar adds that automatically.Andrew Thompson2008-05-191-1/+1
| | | | | | | Pointed out by: brueffer Notes: svn path=/head/; revision=179124
* Bump document date for last change.Andrew Thompson2008-05-191-1/+1
| | | | Notes: svn path=/head/; revision=179123
* Allow wlandebug to set the default debug level which is inherited when vaps areAndrew Thompson2008-05-192-6/+20
| | | | | | | created. Notes: svn path=/head/; revision=179121
* update for vapsSam Leffler2008-04-201-22/+27
| | | | | | | Supported by: Hobnob Notes: svn path=/head/; revision=178359
* Hook wlandebug up to the build.Andrew Thompson2007-07-281-1/+0
| | | | | | | | | | This tool allows fine grained enabling of the debugging output in net80211 and its useful to have it available to everyone to diagnose wifi issues. Approved by: re (rwatson) Notes: svn path=/head/; revision=171635
* o add 11n knobSam Leffler2007-06-111-5/+11
| | | | | | | o gcc42 stuff Notes: svn path=/head/; revision=170534
* Fix typos.Joel Dahl2007-01-121-3/+3
| | | | Notes: svn path=/head/; revision=165970
* add man pageSam Leffler2007-01-122-1/+182
| | | | Notes: svn path=/head/; revision=165964
* fix typoSam Leffler2007-01-121-1/+1
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=165963
* add rate knob for net80211 rate control modulesSam Leffler2006-11-261-0/+2
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=164635
* Style: NO_MAN doesn't need any value.Ruslan Ermilov2006-03-151-3/+3
| | | | Notes: svn path=/head/; revision=156735
* o move programs to separate directories and use stock Makefiles;Sam Leffler2005-12-112-0/+244
this simplifies including them in crunchgen images o rename 80211* programs to wlan* as was originally intended Notes: svn path=/head/; revision=153317