Help for this page

Select Code to Download


  1. or download this
       # Instanciate object, will start capturing from network
       my $dump = Net::Packet::Dump->new(
    ...
             do_stuff($frame);
          }
       }
    
  2. or download this
    bless(Net::Packet::netpacket_pcap_fp($self->_pcapd), 'IO::File')
    
  3. or download this
    FILE * netpacket_pcap_fp(pcap_t *pd){
       if (pd == NULL) return(0);
       else return(pd->sf.rfile);
    }
    
  4. or download this
    '_pcapd' => pcap_tPtr=SCALAR(0x896dde8)
       -> 144211632
    
  5. or download this
    struct pcap_sf {
        FILE *rfile;
    ...
        struct pcap_sf sf;
        ...
    };