xref: /freebsd/share/man/man9/iflib.9 (revision d8ffc21c5ca6f7d4f2d9a65dc6308699af0b6a01)
1.\" $FreeBSD$
2.Dd September 20, 2018
3.Dt IFLIB 9
4.Os
5.Sh NAME
6.Nm iflib
7.Nd Network Interface Driver Framework
8.Sh DESCRIPTION
9.Nm
10is a framework for writing network interface drivers for FreeBSD.
11It is designed to remove a large amount of the boilerplate that is often
12needed for modern network interface devices, allowing driver authors to
13focus on the specific code needed for their hardware.
14.Pp
15There are three logical components to
16.Nm
17each of which is described in its own manual page.
18These are:
19.Bl -tag -width ".Xr iflibtxrx 9"
20.It Xr iflibdi 9
21Device-independent functions, used to integrate
22.Nm
23into the rest of the
24.Fx
25networking stack.
26.It Xr iflibdd 9
27Device-dependent functions, used when writing new
28.Nm
29based drivers.
30.It Xr iflibtxrx 9
31Device-dependent transmit and receive functions, used when writing new
32.Nm
33based drivers.
34.Sh SEE ALSO
35.Xr iflib 4 ,
36.Xr iflibdd 9 ,
37.Xr iflibdi 9 ,
38.Xr iflibtxrx 9 ,
39.Xr ifnet 9
40.Sh AUTHORS
41.An Benno Rice Aq Mt benno@FreeBSD.org
42
43