in reply to Re^2: transmit udp packets
in thread transmit udp packets

Seems as if your tests are failing and by the errors, appears you're using ActiveState Perl on Windows.

I'm using Strawberry Perl (5.18.1 64-bit) on Windows 7 x64. I've never had an issue installing Net::Frame. I think you could probably force it with '-f'.

The bigger issue is installing Net::Pcap. You'll find information on that here:

Full write-up: Net::Pcap installation help (and not with the library)
Specifically: Re: Net::Pcap installation help (and not with the library)

UPDATE:

VinsWorldcom@C:\Users\VinsWorldcom\Downloads\Net-Frame-1.15> perl Make +file.PL Checking if your kit is complete... Looks good Writing Makefile for Net::Frame Writing MYMETA.yml and MYMETA.json VinsWorldcom@C:\Users\VinsWorldcom\Downloads\Net-Frame-1.15> dmake tes +t cp lib/Net/Frame/Layer/ARP.pm blib\lib\Net\Frame\Layer\ARP.pm cp lib/Net/Frame/Layer/RAW.pm blib\lib\Net\Frame\Layer\RAW.pm cp lib/Net/Frame/Layer/PPP.pm blib\lib\Net\Frame\Layer\PPP.pm cp lib/Net/Frame/Layer/SLL.pm blib\lib\Net\Frame\Layer\SLL.pm cp lib/Net/Frame/Layer.pm blib\lib\Net\Frame\Layer.pm cp lib/Net/Frame.pm blib\lib\Net\Frame.pm cp lib/Net/Frame/Layer/TCP.pm blib\lib\Net\Frame\Layer\TCP.pm cp lib/Net/Frame/Layer/ETH.pm blib\lib\Net\Frame\Layer\ETH.pm cp lib/Net/Frame/Layer/IPv4.pm blib\lib\Net\Frame\Layer\IPv4.pm cp lib/Net/Frame/Layer/UDP.pm blib\lib\Net\Frame\Layer\UDP.pm cp lib/Net/Frame/Layer/NULL.pm blib\lib\Net\Frame\Layer\NULL.pm C:\strawberry\perl\bin\perl.exe "-MExtUtils::Command::MM" "-e" "test_h +arness(0, 'blib\lib', 'blib\arch')" t/*.t t/01-use.t ........... ok t/02-pod-coverage.t .. ok t/03-test-pod.t ...... ok t/04-eth.t ........... ok t/05-arp.t ........... ok t/06-ipv4.t .......... ok t/07-raw.t ........... ok t/08-sll.t ........... ok t/09-tcp.t ........... ok t/10-null.t .......... ok t/11-udp.t ........... ok t/12-ppp.t ........... ok t/13-gethostsubs.t ... ok All tests successful. Files=13, Tests=37, 5 wallclock secs ( 0.16 usr + 0.05 sys = 0.20 C +PU) Result: PASS

Replies are listed 'Best First'.
Re^4: transmit udp packets
by axr0284 (Initiate) on Jun 26, 2015 at 14:51 UTC
    This is proving to be a little more time consuming than I would like. I am short on time so I might look for a ready made solution at this point. If I can't find any, I'll try again. Thanks for the help, Amish