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

  /external/libpcap/tests/
opentest.c 54 int dorfmon, dopromisc, snaplen, useactivate, bufsize; local
62 snaplen = MAXIMUM_SNAPLEN;
90 snaplen = strtol(optarg, &end, 0);
92 || snaplen < 0 || snaplen > MAXIMUM_SNAPLEN)
93 error("invalid snaplen %s", optarg);
94 else if (snaplen == 0)
95 snaplen = MAXIMUM_SNAPLEN;
120 status = pcap_set_snaplen(pd, snaplen);
177 "Usage: %s [ -Ipa ] [ -i interface ] [ -s snaplen ] [ -B bufsize ]\n"
    [all...]
filtertest.c 189 long snaplen; local
212 snaplen = 68;
248 snaplen = strtol(optarg, &end, 0);
250 || snaplen < 0 || snaplen > 65535)
251 error("invalid snaplen %s", optarg);
252 else if (snaplen == 0)
253 snaplen = 65535;
280 pd = pcap_open_dead(dlt, snaplen);
312 "Usage: %s [-dO] [ -F file ] [ -m netmask] [ -s snaplen ] dlt [ expression ]\n"
    [all...]
  /external/tcpdump/
interface.h 224 #define snaplen gndo->ndo_snaplen macro
  /external/libpcap/pcap/
pcap.h 128 bpf_u_int32 snaplen; /* max length saved portion of each pkt */ member in struct:pcap_file_header
  /external/libpcap/
sf-pcap-ng.c 133 bpf_u_int32 snaplen; member in struct:interface_description_block
881 idbp->snaplen = SWAPLONG(idbp->snaplen);
913 p->snapshot = idbp->snaplen;
1084 idbp->snaplen = SWAPLONG(idbp->snaplen);
1101 if (p->snapshot != idbp->snaplen) {
1104 idbp->snaplen);
gencode.c 426 static int snaplen; variable
484 snaplen = pcap_snapshot(p);
485 if (snaplen == 0) {
487 "snaplen of 0 rejects all packets");
500 root = gen_retblk(snaplen);
636 backpatch(p, gen_retblk(snaplen));
    [all...]
  /external/webrtc/webrtc/test/
rtp_file_reader.cc 411 uint32_t snaplen; // Max length of captured packets, in octets. local
415 TRY_PCAP(Read(&snaplen, false));

Completed in 301 milliseconds