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_ACTIVATE 3PCAP "31 July 2016"
22 pcap_activate \- activate a capture handle
26 #include <pcap/pcap.h>
30 int pcap_activate(pcap_t *p);
35 is used to activate a packet capture handle to look
36 at packets on the network, with the options that were set on the handle
40 returns 0 on success without warnings, a non-zero positive value on
41 success with warnings, and a negative value on error.
42 A non-zero return value indicates what warning or error condition
45 The possible warning values are:
47 .B PCAP_WARNING_PROMISC_NOTSUP
48 Promiscuous mode was requested, but the capture source doesn't support
51 .B PCAP_WARNING_TSTAMP_TYPE_NOTSUP
52 The time stamp type specified in a previous
53 .BR pcap_set_tstamp_type (3PCAP)
54 call isn't supported by the capture source (the time stamp type is
58 Another warning condition occurred;
59 .BR pcap_geterr (3PCAP)
61 .BR pcap_perror (3PCAP)
64 as an argument to fetch or display a message describing the warning
67 The possible error values are:
69 .B PCAP_ERROR_ACTIVATED
70 The handle has already been activated.
72 .B PCAP_ERROR_NO_SUCH_DEVICE
73 The capture source specified when the handle was created doesn't
76 .B PCAP_ERROR_PERM_DENIED
77 The process doesn't have permission to open the capture source.
79 .B PCAP_ERROR_PROMISC_PERM_DENIED
80 The process has permission to open the capture source but doesn't
81 have permission to put it into promiscuous mode.
83 .B PCAP_ERROR_RFMON_NOTSUP
84 Monitor mode was specified but the capture source doesn't support
87 .B PCAP_ERROR_IFACE_NOT_UP
88 The capture source device is not up.
91 Another error occurred.
97 as an argument to fetch or display a message describing the error.
100 .BR PCAP_WARNING_PROMISC_NOTSUP ,
101 .BR PCAP_ERROR_NO_SUCH_DEVICE ,
103 .B PCAP_ERROR_PERM_DENIED
110 as an argument to fetch or display an message giving additional details
111 about the problem that might be useful for debugging the problem if it's
114 Additional warning and error codes may be added in the future; a program
115 should check for positive, negative, and zero return codes, and treat
116 all positive return codes as warnings and all negative return
118 .BR pcap_statustostr (3PCAP)
119 can be called, with a warning or error code as an argument, to fetch a
120 message describing the warning or error code.