summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2006-02-16Add DragonFly support.joerg6-19/+27
2006-02-16Fix errno.joerg2-5/+13
2006-02-15Updated to version 0.20.heinz2-6/+6
Pkgsrc changes: none Changes since version 0.18: =========================== - Fix error message on mask values. - Allow net mask of zero.
2006-02-15two changes:spz3-3/+32
- fix a hairy bug in BirdWhoisClient::getResponse (how did that ever work?) - make stripRipeComments more lenient against an APNIC comment style problem
2006-02-14Activated new package 'mbrowse'.heinz1-1/+2
2006-02-14Initial version 0.3.1.heinz6-0/+2302
Mbrowse is an SNMP MIB browser based on GTK and net-snmp. SNMP v1 and v2c are supported. Pkgsrc changes: - The 'pre-configure' target avoids an irritating warning message during the configure stage. - patch-aa works around an "identifier undeclared" error. patch-ab updates the configure script accordingly.
2006-02-14Added btpd.rillig1-1/+2
2006-02-14Imported btpd from PR 21821.rillig4-0/+40
btpd is a bittorrent client consisting of a daemon and client commands, which can be used to read and/or manipulate the daemon state. The daemon is capable of running several torrents simultaneously and only uses one tcp port. It's fairly low on resource usage and should be perfect for a torrent distribution site. Efficient downloads and ease of use makes this client a good choice for the casual user as well. Packaged by Richard Nyberg.
2006-02-13Fix settings for quota. From Ondej Tma in a private mail.martti1-2/+14
2006-02-12Updated to version 4.01:salo8-72/+31
Changes: - Fixed a bug that would cause bogus reverse-DNS resolution on big-endian machines. Thanks to Doug Hoyte, Seth Miller, Tony Doan, and Andrew Lutomirsky for helping to debug and patch the problem. - Fixed an important memory leak in the raw ethernet sending system. Thanks to Ganga Bhavani (GBhavani(a)everdreamcorp.com) for identifying the bug and sending a patch. - Fixed --system-dns option so that --system_dns works too. Error messages were changed to reflect the former (preferred) name. Thanks to Sean Swift (sean.swift(a)bradford.gov.uk) and Peter VanEeckhoutte (Peter.VanEeckhoutte(a)saraleefoodseurope.com) for reporting the problem. - Fixed a crash which would report this message: "NmapOutputTable.cc:143: void NmapOutputTable::addItem(unsigned int, unsigned int, bool, const char*, int): Assertion `row < numRows' failed." Thanks to Jake Schneider (Jake.Schneider(a)dynetics.com) for reporting and helping to debug the problem. - Whenever Nmap sends packets with the SYN bit set (except for OS detection), it now includes the maximum segment size (MSS) tcp option with a value of 1460. This makes it stand out less as almost all hosts set at least this option. Thanks to Juergen Schmidt (ju(a)heisec.de) for the suggestion. - Applied a patch for a Windows interface reading bug in the aDNS subsystem from Doug Hoyte. - Minor changes to recognize DragonFly BSD in configure scripts. Thanks to Joerg Sonnenberger (joerg(a)britannica.bec.de) for sending the patch. - Fixed a minor bug in an error message starting with "eth_send of ARP packet returned". Thanks to J.W. Hoogervorst (J.W.Hoogervorst(a)uva.nl) for finding this.
2006-02-12Fixed pkglint warnings.rillig2-4/+4
2006-02-11Use PKGNAME_NOREV.joerg1-2/+2
2006-02-09Include net/bpf.h, if it is available, to use BIOCIMMEDIATE on Darwin.minskim5-1/+5296
2006-02-09Updated to version 0.55.heinz4-20/+26
Pkgsrc changes: - Removed hacks.mk. Net::DNS should work on Mac OS 10.4 withouth this workaround. - The package has two options now: "inet6" and "online-tests". - p5-Net-DNS requires an additional package, p5-Net-IP. Relevant changes since version 0.49: ==================================== - many bug fixes (see Changes and rt.cpan.org) Feature Net::DNS::Nameserver loop_once() Uncommented the documentation of the loop_once() function and introduced get_open_tcp() that reports if there are any open TCP sockets (useful when using loop_once(). loop_once() itself was introduced in version 0.53_02 Feature async nameserver behaviour. Fix IPv6 on AIX Binding to the local interface did not work when local address was specified as "0" instead of "::". The problem was identified, reported and fixed by Achim Adam. Feature Net::DNS::RR::OPT added the the size(), do(),set_do() and clear_do() methods. Feature: Added "ignqrid" as an attribute to the Resolver. use as: ok (my $res=Net::DNS::Resolver->new(nameservers => ['127.0.0.1'], port => 5354, recurse => 0, igntc => 1, ignqrid => 1, ), When the attribute is set to a non-zero value replies with the qr bit clear and replies with non-matching query ids are happily accepted. This opens the possibility to accept spoofed answers. YOU CAN BURN YOURSELF WITH THIS FEATURE. It is set to 0 per default and remains, except for this changes file an undocumented feature. Fix: Makefile.PL: Minor tweak to recognize Mac OS X 10.4 not so relevant since netdnslib is distributed with the code. Feature: Calling the Net::DNS::Resolver::dnssec method with a non-zero argument will set the udppacketsize to 2048. The method will also carp a warning if you pass a non-zero argument when Net::DNS::SEC is not installed. Feature: IPv6 transport support IPv6 transport has been added to the resolver and to the nameserver code. To use IPv6 please make sure that you have IO::Socket::INET6 version 2.01 or later installed. If IPv6 transport is available Net::DNS::Resolver::Recurse will make use of it (picking randomly between IPv4 and IPv6 transport) use the force_v4() method to only force IPv4. Feature: Binary characters in labels RFC 1035 3.1: Domain names in messages are expressed in terms of a sequence of labels. Each label is represented as a one octet length field followed by that number of octets. Since every domain name ends with the null label of the root, a domain name is terminated by a length byte of zero. The high order two bits of every length octet must be zero, and the remaining six bits of the length field limit the label to 63 octets or less. Unfortunatelly dname attributes are stored strings throughout Net::DNS. (With hindsight dnames should have had their own class in which one could have preserved the wire format.). To be able to represent all octets that are allowed in domain names I took the approach to use the "presentation format" for the attributes. This presentation format is defined in RFC 1035 5.1. I added code to parse presentation format domain names that has escpaped data such as \ddd and \X (where X is not a number) to wireformat and vice verse. In the conversion from wire format to presentation format the characters that have special meaning in a zone file are escaped (so that they can be cut-n-pasted without pain). These are " (0x22), $ (0x24), (0x28), ) (0x29), . (0x2e) , ; (0x3b), @ (ox40) and \ (0x5c). The number between brackets representing the ascii code in hex. Note that wherever a name occurs as a string in Net::DNS it is now in presentation format. For those that dealth with 'hostnames' (subset of all possible domain names) this will be a completely transparent change. Details: I added netdnslib wich contains Net::DNS's own dn_expand. Its implemented in C and the source is a hodgepodge of Berkeley based code and sniplets from ISC's bind9 distribution. The behavior, in terms of which chars are escaped, is similare to bind9. There are some functions added to DNS.pm that do conversion from presentation and wire format and back. They should only be used internally (although they live in EXPORT_OK.) For esotheric test cases see t/11-escapedchars.t.
2006-02-08Fix a bug that prevented this package from compiling on Solarisminskim2-1/+15
and Darwin. Patch from the iperf mailing list.
2006-02-07update to 2.12.5drochner3-8/+19
changes: bugfixes
2006-02-07Make "install" a phony target, so that it works on a case-insensitiveminskim2-1/+12
file system.
2006-02-07Do not define a variable in a header file included by multiple .c files.minskim2-1/+15
This makes the package build on Darwin. Patch from DarwinPorts. The modified header file is used internally, and never installed. So no visible changes to dependent packages.
2006-02-07bump for last changejnemeth1-1/+2
2006-02-07pthread is now required as per the READMEjnemeth1-1/+2
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg223-355/+446
2006-02-05Update to 1.1.0adrianp7-62/+89
> FreeRADIUS 1.1.0 ; $Date: 2006/01/04 05:55:19 $, urgency=low > Feature improvements > * rlm_ldap has "set_auth_type" configuration option, which should > address some configuration problems when using it. > * Fix MIT Kerberos bug > * Modules can be load balanced, both in isolation and redundantly. > See doc/load-balance.txt for more information. > * rlm_perl is now marked "stable" > * N-tier certificate patch from Mohammed Petiwala. > * Copied dictionaries from the CVS head (many, many, more vendors) > * Enabled support for weird VSA formats, like Lucent and Starent. > * Support encrypted IP address and integers, for Juniper clients. > * Add PEAP machine authentication support in module "rlm_mschap". > * Support User-Password field encryption in digest mode. > * rlm_x99_token has become rlm_otp (with lots of changes). > * Add rlm_sqlcounter to the list of stable modules. > * Read MySQL specific options in sections [freeradius] and [client] > from file "my.cnf". > * Support the ${Cisco-AVPair[n]} syntax. > * Execute modules in {Pre,Post}-Proxy-Type stanzas. > * Add new options to radclient to run stress tests on the server. > * New module "rlm_sql_log" to postpone the storage of accounting data > in a SQL database. See rlm_sql_log(5) manpage. > * New program "radsqlrelay" which sends the SQL logfile according to > the SQL server's capabilities. > > Bug fixes > * 306 (HUP when built with threads, but executed with -s) > * 285 (more attributes in dictionary.cisco.vpn3000) > * rlm_digest has a number of bug fixes to authentication types. > * Don't leak memory in module "rlm_sql". > * Update the dictionaries, so that VALUEs with the same name, > but different numbers, aren't allowed. > * Queue the request before looking for available threads. > * Don't free the check items after we received the proxy reply. > * Expand config variables in included files, too. > * Check the return value of accounting modules and don't proxy > invalid requests. > * In rlm_passwd, don't close a file stream more than once. > * Fix format string errors in rlm_sql.c, spotted by Primoz Bratanic. > * Walk the whole string in when escaping strings in rlm_ldap. > * Include crypt.h if it is available so we get a prototype for crypt(), > spotted by Konstantin Kubatkin. > * Removed (for almost all uses) length restrictions on vendor names > and VALUE names. > * Don't leak memory when proxying an Access-Challenge response. > * Make the sleep time user-defined, so radrelay can send more than > 7 requests/s. > * Fix a memory leak in rlm_checkval. > * radclient doesn't resend countless times packets with invalid > signature. > * Fix segfault and mem leak in rlm_pam.
2006-02-05Update to 1.4.3.1adrianp3-13/+14
> ####################### V 1.4.3.1: > > corrections: > PROBLEM: UNIX socket listen accepted only one (or a few) connections. > FIX: do not remove listening UNIX socket in child process > > PROBLEM: SIGSEGV when TCP part of SSL connect failed > FIX: check ssl pointer before calling SSH_shutdown > > In debug mode, show connect client port even when connect fails > > ####################### V 1.4.3.0: > > new features: > socat options -L, -W for application level locking > > options "lockfile", "waitlock" for address level locking > (Stefan Luethje) > > option "readbytes" limits read length (Adam Osuchowski) > > option "retry" for unix-connect, unix-listen, tcp6-listen (Dale Dude) > socat options -L, -W for application level locking > > options "lockfile", "waitlock" for address level locking > (Stefan Luethje) > > option "readbytes" limits read length (Adam Osuchowski) > > option "retry" for unix-connect, unix-listen, tcp6-listen (Dale Dude) > > pty symlink, unix listen socket, and named pipe are per default removed > after use; option unlink-close overrides this new behaviour and also > controls removal of other socat generated files (Stefan Luethje) > > corrections: > option "retry" did not work with tcp-listen > > EPIPE condition could result in a 100% CPU loop > > further changes: > support systems without SHUT_RD etc. > handle more size_t types > try to find makedepend options with gcc 3 (richard/OpenMacNews)
2006-02-04Fix build on Solaris.markd4-8/+40
2006-02-04Update a comment in the Makefileadrianp1-1/+7
2006-02-04Add missing entries to PLIST. Bump PKGREVISION.hira2-2/+6
2006-02-03Update to version 20051128.rpaulo2-6/+6
2006-02-03Bump PKGREVISION of these packages which affected (fixed) bytaca1-2/+2
fix of REPLACE_RUBY, the impact was big or small.
2006-02-02Fixed pkglint warnings.rillig6-21/+21
2006-02-02USE_TOOLS+= pkg-configmarkd1-1/+2
2006-02-01Add DragonFly support. Also recognize DragonFly and NetBSD as OS name.joerg6-15/+70
2006-02-01Add CVS ID to patch.reed2-2/+4
2006-02-01Update to version 3.4.0salo3-17/+16
Changes: - flush cache when changing ftp:charset. - show all queued commands on `queue' command. - support open ranges for `mirror --size-range'. - new setting dns:max-retries. - change dns:fatal-timeout setting to accept time interval suffixes. - prefer getaddrinfo over gethostbyname2. - treat GNUTLS_E_UNEXPECTED_PACKET_LENGTH as EOF indicator - this fixes secure ftp with ProFTPD server. - fixed netrc usage when no user name is given.
2006-02-01Looks like kiax wasn't linked to LIBOSSAUDIO with LIBS... use LDFLAGSxtraeme1-2/+2
again.
2006-01-31Update to KDE 3.5.1markd2-6/+7
Changes: * Kopete o Fix disconnects/crashes after connecting to a Yahoo webcam o Don't send picture information packets to Yahoo buddies when connecting into invisible state, as one might use these packets to reveal your real connection state o Don't crash when deleting several contacts that are in several groups o Fix escaping of HTML in Yahoo messages * KPPP o fix initialization problem with some modems (Qualcomm 3G CDMA) o support higher connection speeds (921600 bps)
2006-01-31Sync with nmap 4.00salo1-4/+4
2006-01-31Update to version 4.00salo3-17/+17
Changes: 4.00: ===== - Added the '?' command to the runtime interaction system. It prints a list of accepted commands. Thanks to Andrew Lutomirski (luto(a)myrealbox.com) for the patch. 3.9999: ======= - Generated a new libpcre/configure to cope with changes in LibPCRE 6.4 - Updated nmap-mac-prefixes to reflect the latest OUI DB from the IEEE (http://standards.ieee.org/regauth/oui/oui.txt) - Updated nmap-protocols with the latest IEEE internet protocols assignments (http://www.iana.org/assignments/protocol-numbers). - Updated the Nmap version number and related fields that MS Visual Studio places in the binary. This was done by editing mswin32/nmap.rc. 3.999: ====== - Added runtime interaction support to Windows, thanks to patches from Andrew Lutomirski (luto(a)myrealbox.com) and Gisle Vanem (giva(a)bgnett.no). - Changed a couple lines of tcpip.cc (put certain IP header fields in host byte order rather than NBO) to (hopefully) support Mac OS X on Intel. Thanks to Kurt Grutzmacher (grutz(a)jingojango.net) for the patch. - Upgraded the included LibPCRE from version 6.3 to 6.4. There was a report of version detection crashes on the new Intel-based MACs with 6.3. - Fixed an issue in which the installer would malfunction in rare issues when installing to a directory with spaces in it. Thanks to Thierry Zoller (Thierry(a)Zoller.lu) for the report. 3.99: ===== - Integrated all remaining 2005 service submissions. The DB now has surpassed 3,000 signatures for the first time. There now are 3,153 signatures for 381 service protocols. Those protocols span the gamut from abc, acap, afp, and afs to zebedee, zebra, and zenimaging. It even covers obscure protocols such as http, ftp, smtp, and ssh :). Thanks to Version Detection Czar Doug Hoyte for his excellent work on this. - Created a Windows executable installer using the open source NSIS (Nullsoft Scriptable Install System). It handles Pcap installation, registry performance changes, and adding Nmap to your cmd.exe executable path. The installer source files are in mswin32/nsis/ . Thanks to Google SoC student Bo Jiang (jiangbo(a)brandeis.edu) for creating the initial version. - Fixed a backward compatibility bug in which Nmap didn't recognize the --min_rtt_timeout option (it only recognized the newly hyphenated --min-rtt-timeout). Thanks to Joshua D. Abraham (jabra(a)ccs.neu.edu) for the bug report. - Fixed compilation to again work with gcc-derivatives such as MingW. Thanks to Gisle Vanem (giva(a)bgnett.no) for sending the patches 3.98BETA1: ========== - Added run time interaction as documented at http://www.insecure.org/nmap/man/man-runtime-interaction.html . While Nmap is running, you can now press 'v' to increase verbosity, 'd' to increase the debugging level, 'p' to enable packet tracing, or the capital versions (V,D,P) to do the opposite. Any other key (such as enter) will print out a status message giving the estimated time until scan completion. This only works on UNIX for now. Do we have any volunteers to add Windows support? You would need to change a handful of UNIX-specific termio calls with the Windows equivalents. This feature was created by Paul Tarjan (ptarjan(a)stanford.edu) as part of the Google Summer of Code. - Reverse DNS resolution is now done in parallel rather than one at a time. All scans of large networks (particularly list, ping and just-a-few-ports scans) should benefit substantially from this change. If you encounter any problems, please let us know. The new --system_dns option was added so you can use the (slow) system resolver if you prefer that for some reason. You can specify a comma separated list of DNS server IP addresses for Nmap to use with the new --dns_servers option. Otherwise, Nmap looks in /etc/resolve.conf (UNIX) or the system registry (Windows) to obtain the nameservers already configured for your system. This excellent patch was written by Doug Hoyte (doug(a)hcsw.org). - Added the --badsum option, which causes Nmap to use invalid TCP or UDP checksums for packets sent to target hosts. Since virtually all host IP stacks properly drop these packets, any responses received are likely coming from a firewall or IDS that didn't bother to verify the checksum. For more details on this technique, see http://www.phrack.org/phrack/60/p60-0x0c.txt . The author of that paper, Ed3f (ed3f(a)antifork.org), is also the author of this patch (which I changed it a bit). - The 26 Nmap commands that previously included an underscore (--max_rtt_timeout, --send_eth, --host_timeout, etc.) have been renamed to use a hyphen in the preferred format (i.e. --max-rtt-timeout). Underscores are still supported for backward compatibility. - More excellent NmapFE patches from Priit Laes (amd(a)store20.com) were applied to remove all deprecated GTK API calls. This also eliminates the annoying Gtk-Critical and Gtk-WARNING runtime messages. - Changed the way the __attribute__ compiler extension is detected so that it works with the latest Fedora Core 4 updates (and perhaps other systems). Thanks to Duilio Protti (dprotti(a)fceia.unr.edu.ar) for writing the patch. The compilation error message this fixes was usually something like: "nmap.o(.rodata+0x17c): undefined reference to `__gthrw_pthread_cancel(unsigned long)" - Added some exception handling code to mswin32/winfix.cc to prevent Nmap from crashing mysteriously when you have WinPcap 3.0 or earlier (instead of the required 3.1). It now prints an error message instead asking you to upgrade, then reduces functionality to connect()-only mode. I couldn't get it working with the C++ standard try/catch() blocks, but as soon as I used the nonstandard MS conventions (__try/__except(), everything worked fine. Shrug. - Stripped the firewall API out of the libdnet included with Nmap because Nmap doesn't use it anyway. This saves space and reduces the likelihood of compilation errors and warnings. - Modified the previously useless --noninteractive option so that it deactivates runtime interaction. 3.96BETA1: ========== - Added --max_retries option for capping the maximum number of retransmissions the port scan engine will do. The value may be as low as 0 (no retransmits). A low value can increase speed, though at the risk of losing accuracy. The -T4 option now allows up to 6 retries, and -T5 allows 2. Thanks to Martin Macok (martin.macok(a)underground.cz) for writing the initial patch, which I changed quite a bit. I also updated the docs to reflect this neat new option. - Many of the Nmap low-level timing options take a value in milliseconds. You can now append an 's', 'm', or 'h' to the value to give it in seconds, minutes, or hours instead. So you can specify a 45 minute host timeout with --host_timeout 45m rather than specifying --host_timeout 2700000 and hoping you did the math right and have the correct number of zeros. This also now works for the --min_rtt_timeout, --max_rtt_timeout, --initial_rtt_timeout, --scan_delay, and --max_scan_delay options. - Improved the NmapFE port to GTK2 so it better-conforms to the new API and you don't get as many annoying messages in your terminal window. GTK2 is prettier and more functional too. Thanks to Priit Laes (amd(a)store20.com) for writing these excellent patches. - Fixed a problem which led to the error message "Failed to determine dst MAC address for target" when you try to run Nmap using a dialup/PPP adapter on Windows rather than a real ethernet card. Due to Microsoft breaking raw sockets, Nmap no longer supports dialup adapters, but it should now give you a clearer error message than the "dst MAC address" nonsense. - Debian GNU/kFreeBSD is now supported thanks to a patch to libdnet's configure.in by Petr Salinger (Petr.Salinger(a)t-systems.cz). - Tried to update to the latest autoconf only to find that there hasn't been a new version in more than two years :(. I was able to find new config.sub and config.guess files at http://cvs.savannah.gnu.org/viewcvs/config/config/ , so I updated to those. - Fixed a problem with the -e option when run on Windows (or UNIX with --send_eth) when run on an ethernet network against an external (routed) host. You would get the message "NmapArpCache() can only take IPv4 addresses. Sorry". Thanks to KX (kxmail(a)gmail.com) for helping to track down the problem. - Made some changes to allow source port zero scans (-g0). Nmap used to refuse to do this, but now it just gives a warning that it may not work on all systems. It seems to work fine on my Linux box. Thanks to Bill Dale (bill_dale(a)bellsouth.net) for suggesting this feature. - Made a change to libdnet so that Windows interfaces are listed as down if they are disconnected, unplugged, or otherwise unavailable. - Ceased including foreign translations in the Nmap tarball as they take up too much space. HTML versions can be found at http://www.insecure.org/nmap/docs.html , while XML and NROFF versions are available from http://www.insecure.org/nmap/data/man-xlate/ . - Changed INSTALL and README-WIN32 files to mostly just reference the new Nmap Install Guide at http://www.insecure.org/nmap/install/ . - Included docs/nmap-man.xml in the tarball distribution, which is the DocBook XML source for the Nmap man page. Patches to Nmap that are user-visible should include patches to the man page XML source rather than to the generated Nroff. - Fixed Nmap so it doesn't crash when you ask it to resume a previous scan, but pass in a bogus file rather than actual Nmap output. Thanks to Piotr Sobolewski (piotr_sobolewski(a)o2.pl) for the fix.
2006-01-30This uses libtool, so add USE_LIBTOOL=yes.wiz1-1/+2
2006-01-30Fix tcpwrappers option. Since it is on by default, bump PKGREVISION.wiz2-7/+8
From Hironaga KOJIMA in private mail.
2006-01-30Update "libtorrent" package to version 0.8.3 and "rtorrent" package totron9-28/+119
version 0.4.3. Changes since 0.7.6/0.3.6: - New throttle implementation - Improved config file parser - Settings for using a http proxy and changing the process's umask. - Many more bug fixes and improvements
2006-01-29s/var/${VARBASE}/gadrianp1-3/+3
2006-01-29Fix COMMENTadrianp1-2/+2
2006-01-29Changes 0.96:adam3-8/+21
New features: - Browse Host (HTML and Gnutella), TLS and IPv6 support. - Chinese and Greek translations of the user interface. - D-BUS plugging. - Added hot keys: F2, F8 and F9 (see menu View->...). - Searches are now created with a configurable expiration date. Improvements: - Optimization of the UTF-8 processing. - Better filename conversion to locale, with automagic charset detection. - General performance improvements in QRP and search filters. - Full "nl" translation. - Sorting persistence. Under the hood: - Buffering of downloaded data to avoid excessive disk fragmentation - Support for the epoll()/kqueue() system calls. - More optimistic PARQ ETA, and PARQ back-off when QUEUE are unanswered. - NFS-compatible session locking if anyone cares. - Nifty property browser.
2006-01-29Added snort-preludeshannonjr1-1/+2
2006-01-29This is a package providing a version of snort that functions as a sensorshannonjr1-0/+25
in the Prelude hybrid IDS system. This snort version will report alerts to the coonfigured Prelude manager. The overhead of this reporting option is comparable to barnyard. This is one of several new Prelude packages.
2006-01-29Add & enable dnsdoctorseb1-1/+2
2006-01-29Initial import of DNSdoctor version 1.0.0 as net/dnsdoctor into the NetBSDseb6-0/+278
Packages Collection. DNSdoctor is intended to help solving misconfigurations or inconsistencies in DNS zones by looking for potential errors, give you a description of the problem and refer you to RFC or other documents.
2006-01-27Update ns to 2.29.minskim6-3365/+230
Changes: - updated SCTP implementation. - added new retransmission policy for sending fast retransmissions to the same destination and timeout retransmissions to an alternate destination - added experimental feature: changePrimaryThresh_ sets a threshold for when the primary destination is changed automatically - added the ability to specify one of three dormant state actions - added the ability to track the number of times fast retransmit, multiple fast retransmit, and timeouts are invoked - new TCL bindable variables: initial RTO, min RTO, max RTO, fast rtx trigger, and sack delay - bug fixes.
2006-01-26Updated p5-Net-Pcap to 0.11:hiramatsu2-8/+7
2005.11.28 - 0.11 - Sebastien Aperghis-Tramoni (SAPER) - [CODE] Added the pcapinfo command. - [DIST] Cygwin installation was simplified and should now Just Work. - [TESTS] Improved the whole test suite to make it use the best device it can find (was needed for Cygwin & Win32). - [DOC] Corrected a few typos thanks to Test::Spelling. - [DOC] Small documentation nits. 2005.11.xx - 0.10 - Sebastien Aperghis-Tramoni (SAPER) - [BUGFIX] lookupnet() wasn't exported by :functions. - [BUGFIX] Fixed findalldevs() emulation. - [BUGFIX] Replaced several newSViv() with newSVuv() to respect the actual unsigned nature of several fields. - [TESTS] Fixed 03-openlive.t for Darwin/Mac OS X. - [TESTS] RT#15342: lookupnet() fails if the device returned by lookupdev() has no IP configured. Thanks to - [TESTS] RT#15343: warnings when running t/14-datalink.t - [TESTS] Fixed another corner case in t/02-lookup.t thanks to Rafael Garcia-Suarez. - [TESTS] t/Utils.pm now sets the environment to C. Thanks to Karl Y. Pradene. 2005.10.26 - 0.09 - Sebastien Aperghis-Tramoni (SAPER) - [BUGFIX] Restored compatibility with older versions of libpcap, namely the traditional ones founds on BSD systems. - [FEATURE] Added Microsoft Visual C++ 7 compatibility, thanks to Max Maischen and Jean-Louis Morel. - [CODE] Added new detection routines for looking which functions are actually available on the host system. - [CODE] Upgraded to Devel::PPPort 3.06_03 - [TESTS] Renamed t/CheckAuth.pm to t/Utils.pm, added function is_available(). - [TESTS] Changed the way the test utility module is loaded. - [TESTS] Updated several test files so they skip the tests that depend on a function that may be unavailable. - [TESTS] Fixes several corner cases thanks to the benevolent testing of Philippe Bruhat, David Morel and Scott Lanning. 2005.10.05 - 0.08 - Sebastien Aperghis-Tramoni (SAPER) - [BUGFIX] RT#6320: loop() conflicts with alarm(). Thanks to RafaZ: Garcia-Suarez for the patch. Also applied to dispatch() and next(). - [BUGFIX] setnonblock() and getnonblock() now checks that $err is a reference. - [BUGFIX] Merged Jean-Louis Morel patch: modification of the detection code in Makefile.PL for Win32; fixes for compiling with Microsoft compiler; simplification of lookupdev(). - [BUGFIX] Restored compatibility with Perl 5.6, 5.5 and 5.4 - [BUGFIX] Fixed memory leak in lookupdev(). - [BUGFIX] Some XS wrappers (compile(), dispatch(), stats()) now resets the error string before calling the underlying functions. - [FEATURE] Now tries to use XSLoader if available, then falls back to DynaLoader. - [FEATURE] Improved findalldevs(). See documentation. - [FEATURE] Added wrapper for freecode(), dump_flush(), dump_file(). - [DIST] Improved detection code in Makefile.PL. - [TESTS] Updated t/05-dump.t, t/12-next.t in order to increase code coverage (94%). What remains uncovered is cargo-cult defensive, hence untestable, code. - [TESTS] Updated t/01-api.t, t/05-dump.t, t/08-filter.t, t/10-fileno.t, t/13-dispatch.t, t/16-setnonblock.t - [TESTS] Updated all test scripts in order to suppress warnings. - [TESTS] Moved the the check whether pcap can be used in t/CheckAuth.pm and added Win32 specific code, supplied by Jean-Louis Morel. - [TESTS] Added t/rt-6320.t for checking the bugfix of RT#6320. - [TESTS] Added t/distchk.t 2005.09.23 - 0.07 - Sebastien Aperghis-Tramoni (SAPER) - [BUGFIX] RT#7455: Memory corruption when using Net::Pcap::Compile() - [BUGFIX] Merged Win32 fix to pcap_lookupdev() from JLM/0.04.02 - [FEATURE] Added wrappers for lib_version(), open_dead(), set_datalink(), datalink_name_to_val(), datalink_val_to_name(), datalink_val_to_description() - [FEATURE] Added support for all DLT_*, MODE_*, PCAP_* and useful BPF_* numeric macros using ExtUtils::Constant. - [FEATURE] Added const qualifiers when appropriate. - [FEATURE] Added ppport.h - [DIST] Added libpcap detection using have_library() from XML::LibXML::Common - [TESTS] Fixed scripts t/10-fileno.t, - [TESTS] Added t/17-lib_version.t, t/18-open_dead.t, 19-breakloop.t - [TESTS] Updated t/14-datalink.t - [DOC] Updated documentation. 2005.09.15 - 0.06 - Sebastien Aperghis-Tramoni (SAPER) - [FEATURE] RT#7594: added pcap_setnonblock() and pcap_getnonblock(). Thanks to Ernesto Domat for the patch. - [FEATURE] Changed the warning returned by stats() in order to be uniform with other similar warnings - [TESTS] Completely rewrote the tests suite using Test::More and better (and portable) methods to skip tests when appropriate. - [TESTS] Added t/podcover.t, t/pod.t, t/portfs.t - [TESTS] Added t/15-is_swapped.t, t/16-setnonblock.t - [DIST] Updated Makefile.PL - [DOC] RT#7671: documentation typo - [DOC] Updated the documentation.
2006-01-25DragonFly also needs sys/time.h before sys/resource.h.joerg2-1/+15