head	1.3;
access;
symbols;
locks; strict;
comment	@# @;


1.3
date	2012.11.17.01.53.02;	author svnexp;	state Exp;
branches;
next	1.2;

1.2
date	2012.01.17.18.20.34;	author adrian;	state Exp;
branches;
next	1.1;

1.1
date	2012.01.11.17.41.14;	author adrian;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Switching exporter and resync
@
text
@# $FreeBSD: head/sys/modules/wtap/Makefile 230273 2012-01-17 18:20:34Z adrian $


# Declare Name of kernel module
KMOD	=  wtap

# Enumerate Source files for kernel module
.PATH:	${.CURDIR}/../../dev/wtap
SRCS	=  if_wtap_module.c if_wtap.c if_medium.c

.PATH:	${.CURDIR}/../../dev/wtap/wtap_hal
SRCS	+= hal.c

.PATH:	${.CURDIR}/../../dev/wtap/plugins
SRCS	+= visibility.c

SRCS	+= opt_global.h

.if defined(KERNBUILDDIR)
MKDEP=          -include ${KERNBUILDDIR}/opt_global.h
.else
CFLAGS+=        -include opt_global.h
MKDEP=          -include opt_global.h

opt_global.h:
	echo "#define VIMAGE 1" > ${.TARGET}
.endif

# Include kernel module makefile
.include <bsd.kmod.mk>
@


1.2
log
@SVN rev 230273 on 2012-01-17 18:20:34Z by adrian

Tidy-up.
@
text
@d1 1
a1 1
# $FreeBSD$
@


1.1
log
@SVN rev 229970 on 2012-01-11 17:41:14Z by adrian

Introduce wtap, the beginnings of a net80211 wlan simulator.

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>
@
text
@a2 1
.PATH:	${.CURDIR}/../../dev/wtap
d8 1
@

