/external/libpcap/ |
pcap_breakloop.3pcap | 22 pcap_breakloop \- force a pcap_dispatch() or pcap_loop() call to return 36 .B pcap_dispatch() 63 blocked in pcap_dispatch(), pcap_loop(), pcap_next(), or pcap_next_ex(), 85 .B pcap_dispatch() 91 .B pcap_dispatch()
|
pcap_dump.3pcap | 40 .B pcap_dispatch() 50 pcap(3PCAP), pcap_dump_open(3PCAP), pcap_dispatch(3PCAP),
|
README.dag | 42 Timeouts are supported. pcap_dispatch() will return after to_ms milliseconds 43 regardless of how many packets are received. If to_ms is zero pcap_dispatch() 46 pcap_dispatch() will block on and process a minimum of 64kB of data (before 49 the 64kB minimum causing pcap_dispatch() to process any available data and 52 pcap_setnonblock is supported. When nonblock is set, pcap_dispatch() will
|
pcap_loop.3pcap | 22 pcap_loop, pcap_dispatch \- process packets from a live capture or savefile 39 int pcap_dispatch(pcap_t *p, int cnt, 60 .B pcap_dispatch() 82 .B pcap_dispatch() 107 .BR pcap_dispatch() , 132 .BR pcap_dispatch() . 172 .B pcap_dispatch()
|
TODO | 29 you can call "pcap_dispatch()" as the dispatch routine after putting
|
pcap_setnonblock.3pcap | 53 .B pcap_dispatch()
|
pcap_next_ex.3pcap | 54 .BR pcap_dispatch() ; 59 .B pcap_dispatch() 71 .BR pcap_dispatch() ; 87 .BR pcap_dispatch() . 140 pcap(3PCAP), pcap_geterr(3PCAP), pcap_dispatch(3PCAP),
|
pcap-sita.html | 57 <TD VALIGN=TOP>pcap_dispatch(all packets in one buffer of capture only)</TD> 61 <TD VALIGN=TOP>pcap_dispatch(one buffer of capture only)</TD> 97 pcap_dispatch<BR> 183 <TD VALIGN=TOP ROWSPAN=2><B>pcap_dispatch()</B></TD> 189 On the first invocation of pcap_dispatch(), pcap_loop(), or pcap_next(), or pcap_next_ex() following a pcap_open_live(), 217 Is similar to pcap_dispatch() except it keeps reading packets until 224 On the first invocation of pcap_dispatch(), pcap_loop(), or pcap_next(), or pcap_next_ex() following a pcap_open_live(), 251 It reads the next packet (by calling pcap_dispatch() with a count of 1) 258 On the first invocation of pcap_dispatch(), pcap_loop(), or pcap_next(), or pcap_next_ex() following a pcap_open_live(), 270 between the SMP and the IOP that provides the captured data (via calling pcap_dispatch() [all...] |
pcap_get_selectable_fd.3pcap | 60 .B pcap_dispatch()
|
Makefile.in | 598 rm -f pcap_dispatch.3pcap && \ 599 $(LN_S) pcap_loop.3pcap pcap_dispatch.3pcap && \ 690 rm -f $(DESTDIR)$(mandir)/man3/pcap_dispatch.3pcap
|
CHANGES | 56 Fix handling of pcap_loop()/pcap_dispatch() with a packet count 593 - Fixed bug in pcap_dispatch() that kept it from returning on packet 736 - Fixed a bug in pcap_next(); if pcap_dispatch() returns 0, pcap_next()
|
pcap.c | 218 if (pcap_dispatch(p, 1, p->oneshot_callback, (u_char *)&s) <= 0) 836 pcap_dispatch(pcap_t *p, int cnt, pcap_handler callback, u_char *user) function [all...] |
pcap-linux.c | [all...] |
pcap-bpf.c | 914 * pcap_dispatch() etc. aren't [all...] |
/external/libpcap/tests/ |
selpolltest.c | 181 status = pcap_dispatch(pd, -1, countme, 227 status = pcap_dispatch(pd, -1, countme, 238 status = pcap_dispatch(pd, -1, countme, 242 printf("%d packets seen, %d packets counted after pcap_dispatch returns\n",
|
capturetest.c | 174 status = pcap_dispatch(pd, -1, countme, 179 printf("%d packets seen, %d packets counted after pcap_dispatch returns\n",
|
/external/wpa_supplicant_8/src/l2_packet/ |
l2_packet_winpcap.c | 41 * Number of pcap_dispatch() iterations to do without extra wait after each 101 /* pcap_dispatch() callback for the RX thread */ 133 pcap_dispatch(l2->pcap, 1, l2_packet_receive_cb,
|
l2_packet_pcap.c | 192 pcap_dispatch(pcap, 10, l2_packet_receive_cb, (u_char *) l2);
|
/external/libpcap/pcap/ |
pcap.h | 373 int pcap_dispatch(pcap_t *, int, pcap_handler, u_char *);
|