HomeSort by relevance Sort by last modified time
    Searched defs:pcap_t (Results 1 - 2 of 2) sorted by null

  /external/libpcap/pcap/
pcap.h 81 typedef struct pcap pcap_t; typedef in typeref:struct:pcap
281 PCAP_API pcap_t *pcap_create(const char *, char *);
282 PCAP_API int pcap_set_snaplen(pcap_t *, int);
283 PCAP_API int pcap_set_promisc(pcap_t *, int);
284 PCAP_API int pcap_can_set_rfmon(pcap_t *);
285 PCAP_API int pcap_set_rfmon(pcap_t *, int);
286 PCAP_API int pcap_set_timeout(pcap_t *, int);
287 PCAP_API int pcap_set_tstamp_type(pcap_t *, int);
288 PCAP_API int pcap_set_immediate_mode(pcap_t *, int);
289 PCAP_API int pcap_set_buffer_size(pcap_t *, int)
    [all...]
  /external/scapy/scapy/modules/
winpcapy.py 222 #typedef struct pcap pcap_t
224 pcap_t = pcap variable
256 #pcap_t * pcap_open_live (const char *device, int snaplen, int promisc, int to_ms, char *ebuf)
259 pcap_open_live.restype = POINTER(pcap_t)
262 #pcap_t * pcap_open_dead (int linktype, int snaplen)
263 # Create a pcap_t structure without starting a capture.
265 pcap_open_dead.restype = POINTER(pcap_t)
268 #pcap_t * pcap_open_offline (const char *fname, char *errbuf)
271 pcap_open_offline.restype = POINTER(pcap_t)
274 #pcap_dumper_t * pcap_dump_open (pcap_t *p, const char *fname
    [all...]

Completed in 87 milliseconds