opnsense-src/tools/tools/netmap
Luigi Rizzo 5819da83ce - change the buffer size from a constant to a
TUNABLE variable (hw.netmap.buf_size) so we can experiment
  with values different from 2048 which may give better cache performance.

- rearrange the memory allocation code so it will be easier
  to replace it with a different implementation. The current code
  relies on a single large contiguous chunk of memory obtained through
  contigmalloc.
  The new implementation (not committed yet) uses multiple
  smaller chunks which are easier to fit in a fragmented address
  space.
2012-02-08 11:43:29 +00:00
..
bridge.c Spelling fixes for tools/ 2011-12-30 00:04:11 +00:00
click-test.cfg Bring in support for netmap, a framework for very efficient packet 2011-11-17 12:17:39 +00:00
Makefile Bring in support for netmap, a framework for very efficient packet 2011-11-17 12:17:39 +00:00
pcap.c Bring in support for netmap, a framework for very efficient packet 2011-11-17 12:17:39 +00:00
pkt-gen.c - change the buffer size from a constant to a 2012-02-08 11:43:29 +00:00
README Bring in support for netmap, a framework for very efficient packet 2011-11-17 12:17:39 +00:00

$FreeBSD$

This directory contains examples that use netmap

	pkt-gen		a packet sink/source using the netmap API

	bridge		a two-port jumper wire, also using the native API

	testpcap	a jumper wire using libnetmap (or libpcap)

	click*		various click examples