- uses MULTI_PACKAGES (-client, -server, -share)
- gtk2 support in the client
from maintainer Aleksander Piotrowski <aleksander.piotrowski at piestrak.waw.pl>
cleaned up by yours truly
These modules provide a basis for parsing snort configuration files and
rules, allow tools to be built that muck with rulesets with less effort.
An example tool, snortconfig, is included. snortconfig was the reason
these modules were built.
ok sturm@
When the code you're testing returns multiple lines, records or data
structures and they're just plain wrong, an equivalent to the Unix
"diff" utility may be just what's needed.
ok sturm@
Text::Diff provides a basic set of services akin to the GNU "diff"
utility. It is not anywhere near as feature complete as GNU "diff", but
it is better integrated with Perl and available on all platforms. It is
often faster than shelling out to a system's "diff" executable for small
files, and generally slower on larger files.
ok sturm@
This module supports getaddrinfo() and getnameinfo() to intend to
enable protocol independent programing. IPv6 related defines such
as AF_INET6 are also included.
Fixes and OK sturm@
IO::Socket::INET6 provides an object interface to creating and using
sockets in either AF_INET or AF_INET6 domains. It is built upon the
IO::Socket interface and inherits all the methods defined by IO::Socket.
Fixes and OK sturm@
--
XML::Twig provides a way to process XML documents. It is built on
top of XML::Parser.
The module offers a tree interface to the document, while allowing
you to output the parts of it that have been completely processed.
It allows minimal resource (CPU and memory) usage by building the
tree only for the parts of the documents that need actual processing.
XML::Twig tries to make simple things easy so it tries its best to
takes care of a lot of the (usually) annoying (but sometimes
necessary) features that come with XML and XML::Parser.