]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/libpcap/pcap-linktype.manmisc.in
Remove spurious newline
[FreeBSD/FreeBSD.git] / contrib / libpcap / pcap-linktype.manmisc.in
1 .\" Copyright (c) 1987, 1988, 1989, 1990, 1991, 1992, 1994, 1995, 1996, 1997
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that: (1) source code distributions
7 .\" retain the above copyright notice and this paragraph in its entirety, (2)
8 .\" distributions including binary code include the above copyright notice and
9 .\" this paragraph in its entirety in the documentation or other materials
10 .\" provided with the distribution, and (3) all advertising materials mentioning
11 .\" features or use of this software display the following acknowledgement:
12 .\" ``This product includes software developed by the University of California,
13 .\" Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 .\" the University nor the names of its contributors may be used to endorse
15 .\" or promote products derived from this software without specific prior
16 .\" written permission.
17 .\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 .\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 .\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20 .\"
21 .TH PCAP-LINKTYPE @MAN_MISC_INFO@ "7 April 2014"
22 .SH NAME
23 pcap-linktype \- link-layer header types supported by libpcap
24 .SH DESCRIPTION
25 For a live capture or ``savefile'', libpcap supplies, as the return
26 value of the
27 .BR pcap_datalink (3PCAP)
28 routine, a value that indicates the type of link-layer header at the
29 beginning of the packets it provides.  This is not necessarily the type
30 of link-layer header that the packets being captured have on the network
31 from which they're being captured; for example, packets from an IEEE
32 802.11 network might be provided by libpcap with Ethernet headers that
33 the network adapter or the network adapter driver generates from the
34 802.11 headers.  The names for those values begin with
35 .BR DLT_ ,
36 so they are sometimes called "DLT_ values".
37 .PP
38 The values stored in the link-layer header type field in the savefile
39 header are, in most but not all cases, the same as the values returned
40 by
41 .BR pcap_datalink() .
42 The names for those values begin with
43 .BR LINKTYPE_ .
44 .PP
45 The link-layer header types supported by libpcap are described at
46 http://www.tcpdump.org/linktypes.html.
47 .SH SEE ALSO
48 pcap_datalink(3PCAP)