summaryrefslogtreecommitdiff
path: root/net/p5-Net-Packet
AgeCommit message (Collapse)AuthorFilesLines
2010-03-08Updating net/p5-Net-Packet from 3.26 to 3.27sno2-11/+6
pkgsrc changes: - Remove big-endian check, big-endian architectures are supported since 3.24 Upstream changes: *** This will probably be the last release. From now on, please use Net::Frame::* modules on CPAN. This framework is obsolete. 3.27 Mon Nov 9 19:19:57 CET 2009 - bugfix: PPPoE packing payload => http://rt.cpan.org/Public/Bug/Display.html?id=51112 - update: copyright notice
2009-07-18pkgsrc changes:sno2-14/+14
- Updating package for p5 module Net::Packet from 3.25nb1 to 3.26 - Adjusting / Reordering dependencies according to META.yml - Adding homepage / license Upstream changes: 3.26 Sat Apr 19 18:41:12 CEST 2008 - new: added possibility to adjust snaplen in Dump.pm => contributed by Darien Kindlund - bugfix: examples/read-pcap.pl
2009-07-17Give up MAINTAINERadrianp1-2/+2
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-1/+2
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-06-12Add DESTDIR support.joerg1-1/+3
2007-10-25Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mkjlam1-1/+0
can handle packages having no PLIST files.
2007-01-03Update to 3.25adrianp3-26/+11
In Brief: 3.24 Sat Dec 16 17:48:15 CET 2006 - NEW: now supports big-endian archs (IPv4 and IPv6 update) - bugfix: Frame: require VLAN 3.21 Wed Nov 15 19:52:43 CET 2006 - NEW: added layers STP, OSPF (header only), IGMPv4 (v1 and v2), CDP::Address, CDP::TypeAddresses, CDP::TypeCapabilities, CDP::TypePortId, CDP::TypeSoftwareVersion - NEW: Dump now support PPP links 3.20 Sun Nov 12 23:02:09 CET 2006 - NEW: support for PPPoE, PPP, PPPLCP, LLC, and begin the work for CDP
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-2/+2
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-02-19Remove (in pkgsrc) broken test for pcap-int.h, the dependency patternwiz2-1/+19
makes sure we have that file.
2005-11-05This pkg has not been ported to big endian architectures. Set PKG_SKIP_REASON.kristerw1-1/+6
2005-08-13This module is a unified framework to craft, send and receive packets atadrianp4-0/+39
layers 2, 3, 4 and 7. Basically, you forge each layer of a frame (Net::Packet::IPv4 for layer 3, Net::Packet::TCP for layer 4 ; for example), and pack all of this into a Net::Packet::Frame object. Then, you can send the frame to the network, and receive it easily, since the response is automatically searched for and matched against the request.