1PCAP_SET_IMMEDIATE_MODE(3PCAP) PCAP_SET_IMMEDIATE_MODE(3PCAP)
2
3
4
6 pcap_set_immediate_mode - set immediate mode for a not-yet-activated
7 capture handle
8
10 #include <pcap/pcap.h>
11
12 int pcap_set_immediate_mode(pcap_t *p, int immediate_mode);
13
15 pcap_set_immediate_mode() sets whether immediate mode should be set on
16 a capture handle when the handle is activated. If immediate_mode is
17 non-zero, immediate mode will be set, otherwise it will not be set.
18
20 pcap_set_immediate_mode() returns 0 on success or PCAP_ERROR_ACTIVATED
21 if called on a capture handle that has been activated.
22
24 pcap(3PCAP), pcap_create(3PCAP), pcap_activate(3PCAP)
25
26
27
28 8 May 20013 PCAP_SET_IMMEDIATE_MODE(3PCAP)