summaryrefslogtreecommitdiff
path: root/sys/dev/wtap/plugins
AgeCommit message (Collapse)Author
2025-05-23wtap(4): Clean up includesLi-Wen Hsu
Sponsored by: The FreeBSD Foundation
2023-08-16sys: Remove $FreeBSD$: two-line .h patternWarner Losh
Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
2023-05-12spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh
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
2020-09-01wtap: clean up empty lines in .c and .h filesMateusz Guzik
Notes: svn path=/head/; revision=365129
2017-11-27sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni
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. Notes: svn path=/head/; revision=326255
2016-05-02etc: minor spelling fixes.Pedro F. Giffuni
Mostly comments but also some user-visible strings. MFC after: 2 weeks Notes: svn path=/head/; revision=298931
2015-12-13wtap: do not include <sys/types.h> when <sys/param.h> is already includedAndriy Voskoboinyk
Approved by: adrian (mentor) Differential Revision: https://reviews.freebsd.org/D4536 Notes: svn path=/head/; revision=292166
2012-12-04Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff
malloc(9) flags in sys/dev. Notes: svn path=/head/; revision=243857
2012-01-11Introduce wtap, the beginnings of a net80211 wlan simulator.Adrian Chadd
This introduces: * a basic wtap interface * a HAL, which implements an abstraction layer for implementing different device behavious; * A visibility plugin, which allows for control over which nodes see other nodes (useful for mesh work.) It doesn't yet implement sta/adhoc/hostap modes but these are quite feasible to implement. Monthadar uses it to do 802.11s mesh verification. The userland tools will be committed in a follow-up commit. Submitted by: Monthadar Al Jaberi <monthadar@gmail.com> Notes: svn path=/head/; revision=229970