1PCAP_SET_TIMEOUT(3PCAP) PCAP_SET_TIMEOUT(3PCAP)
2
3
4
6 pcap_set_timeout - set the read timeout for a not-yet-activated capture
7 handle
8
10 #include <pcap/pcap.h>
11
12 int pcap_set_timeout(pcap_t *p, int to_ms);
13
15 pcap_set_timeout() sets the read timeout that will be used on a capture
16 handle when the handle is activated to to_ms, which is in units of mil‐
17 liseconds.
18
19 The behavior, if the timeout isn't specified, is undefined. We recom‐
20 mend always setting the timeout to a non-zero value.
21
23 pcap_set_timeout() returns 0 on success or PCAP_ERROR_ACTIVATED if
24 called on a capture handle that has been activated.
25
27 pcap(3PCAP), pcap_create(3PCAP), pcap_activate(3PCAP)
28
29
30
31 5 April 2008 PCAP_SET_TIMEOUT(3PCAP)