blob: 9f52b63bb98cfa6192c0095cf24d3189ad73aba5 [file] [log] [blame]
JP Abgrall511eca32014-02-12 13:46:45 -08001.\" Copyright (c) 1994, 1996, 1997
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that: (1) source code distributions
6.\" retain the above copyright notice and this paragraph in its entirety, (2)
7.\" distributions including binary code include the above copyright notice and
8.\" this paragraph in its entirety in the documentation or other materials
9.\" provided with the distribution, and (3) all advertising materials mentioning
10.\" features or use of this software display the following acknowledgement:
11.\" ``This product includes software developed by the University of California,
12.\" Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
13.\" the University nor the names of its contributors may be used to endorse
14.\" or promote products derived from this software without specific prior
15.\" written permission.
16.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
17.\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
18.\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19.\"
Elliott Hughes965a4b52017-05-15 10:37:39 -070020.TH PCAP_LIST_DATALINKS 3PCAP "8 March 2015"
JP Abgrall511eca32014-02-12 13:46:45 -080021.SH NAME
22pcap_list_datalinks, pcap_free_datalinks \- get a list of link-layer header
23types supported by a capture device, and free that list
24.SH SYNOPSIS
25.nf
26.ft B
27#include <pcap/pcap.h>
28.ft
29.LP
30.ft B
31int pcap_list_datalinks(pcap_t *p, int **dlt_buf);
32void pcap_free_datalinks(int *dlt_list);
33.ft
34.fi
35.SH DESCRIPTION
36.B pcap_list_datalinks()
37is used to get a list of the supported link-layer header types of the
38interface associated with the pcap descriptor.
39.B pcap_list_datalinks()
40allocates an array to hold the list and sets
Elliott Hughesd8845d72015-10-19 18:07:04 -070041.IR *dlt_buf
JP Abgrall511eca32014-02-12 13:46:45 -080042to point to that array.
43.LP
44The caller is responsible for freeing the array with
45.BR pcap_free_datalinks() ,
46which frees the list of link-layer header types pointed to by
47.IR dlt_list .
48.LP
49It must not be called on a pcap descriptor created by
50.B pcap_create()
51that has not yet been activated by
52.BR pcap_activate() .
53.SH RETURN VALUE
54.B pcap_list_datalinks()
55returns the number of link-layer header types in the array on success,
56.B PCAP_ERROR_NOT_ACTIVATED
57if called on a capture handle that has been created but not activated,
58and
59.B PCAP_ERROR
60(\-1) on other errors.
61If
62.B PCAP_ERROR
63is returned,
64.B pcap_geterr()
65or
66.B pcap_perror()
67may be called with
68.I p
69as an argument to fetch or display the error text.
70.SH SEE ALSO
71pcap(3PCAP), pcap_geterr(3PCAP),
72pcap_datalink_val_to_name(3PCAP),
73pcap-linktype(@MAN_MISC_INFO@)