Net::PcapUtils;

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • über
    New Member
    • Sep 2007
    • 31

    Net::PcapUtils;

    My script has the
    Code:
    use Net::PcapUtils;
    in, and then when i run it, there comes an error message that says
    Code:
    Can't locate loadable object for module Net::Pcap------- Compilation failed in require at C:/Perl/lib/Net/PcapUtils at line 64.
    But in line 64 of PcapUtils there just reads
    Code:
    use Net::Pcap;
    so whats wrong?
  • KevinADC
    Recognized Expert Specialist
    • Jan 2007
    • 4092

    #2
    Is Net::Pcap installed?

    I'm not sure what the "loadable object" refers to. Maybe ask on www.perlmonks.com if nobody here knows what the problem is.

    Comment

    • über
      New Member
      • Sep 2007
      • 31

      #3
      Hmm dunno if its installed, i just added it to Net folder

      Comment

      • KevinADC
        Recognized Expert Specialist
        • Jan 2007
        • 4092

        #4
        Originally posted by über
        Hmm dunno if its installed, i just added it to Net folder
        You have to install the modules. The loadable object is probably a file that is created when the module is installed and since you did not install the module that is probably the source of the problem.

        Comment

        • über
          New Member
          • Sep 2007
          • 31

          #5
          You have to install the modules.
          But how i could do that?

          Comment

          • KevinADC
            Recognized Expert Specialist
            • Jan 2007
            • 4092

            #6
            Originally posted by über
            But how i could do that?

            Ask your system administrator or your web host. If you have neither see if this link helps:

            Comment

            Working...