1 .\" Copyright (c) 1994, 1996, 1997
2 .\" The Regents of the University of California. All rights reserved.
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.
20 .TH PCAP_FINDALLDEVS 3PCAP "10 January 2014"
22 pcap_findalldevs, pcap_freealldevs \- get a list of capture devices, and
27 #include <pcap/pcap.h>
32 char errbuf[PCAP_ERRBUF_SIZE];
36 int pcap_findalldevs(pcap_if_t **alldevsp, char *errbuf);
37 void pcap_freealldevs(pcap_if_t *alldevs);
42 constructs a list of network devices that can be opened with
47 .BR pcap_open_live() .
48 (Note that there may be network devices that cannot be opened by the
50 .BR pcap_findalldevs() ,
51 because, for example, that process does not have sufficient privileges
52 to open them for capturing; if so, those devices will not appear on the
56 succeeds, the pointer pointed to by
58 is set to point to the first element of the list, or to
60 if no devices were found (this is considered success).
61 Each element of the list is of type
63 and has the following members:
69 a pointer to the next element in the list;
71 for the last element of the list
74 a pointer to a string giving a name for the device to pass to
80 a pointer to a string giving a human-readable description of the device
83 a pointer to the first element of a list of network addresses for the
87 if the device has no addresses
94 set if the device is a loopback interface
97 set if the device is up
100 set if the device is running
104 Each element of the list of addresses is of type
106 and has the following members:
112 a pointer to the next element in the list;
114 for the last element of the list
119 containing an address
126 that contains the netmask corresponding to the address pointed to by
134 that contains the broadcast address corresponding to the address pointed
137 may be null if the device doesn't support broadcasts
144 that contains the destination address corresponding to the address pointed
147 may be null if the device isn't a point-to-point interface
150 Note that the addresses in the list of addresses might be IPv4
151 addresses, IPv6 addresses, or some other type of addresses, so you must
156 before interpreting the contents of the address; do not assume that the
157 addresses are all IPv4 addresses, or even all IPv4 or IPv6 addresses.
158 IPv4 addresses have the value
160 IPv6 addresses have the value
162 (which older operating systems that don't support IPv6 might not
163 define), and other addresses have other values. Whether other addresses
164 are returned, and what types they might have is platform-dependent.
165 For IPv4 addresses, the
167 pointer can be interpreted as if it pointed to a
168 .BR "struct sockaddr_in" ;
169 for IPv6 addresses, it can be interpreted as if it pointed to a
170 .BR "struct sockaddr_in6".
172 The list of devices must be freed with
173 .BR pcap_freealldevs() ,
174 which frees the list pointed to by
177 .B pcap_findalldevs()
178 returns 0 on success and \-1 on failure; as indicated, finding no
179 devices is considered success, rather than failure, so 0 will be
180 returned in that case.
183 is filled in with an appropriate error message.
185 is assumed to be able to hold at least
189 pcap(3PCAP), pcap_create(3PCAP), pcap_activate(3PCAP),
190 pcap_open_live(3PCAP)