summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2009-02-24- Update to 0.996bcube2-13/+17
- Add USE_DESTDIR support - Silence a pkglint warning - Drop maintainership Changes: * cleanup: #ifdefed dump_a_txt() properly so it will not be compiled if --disable-master-dump was specified. * implement "base template" ($=) feature. * portability and readability fixes from Victor Duchovni * added configure test for inline and __inline keywords, and only use #warning keyword if __GNUC__ is defined (more portability fixes from Victor Duchovni) * misc type conversions here and there, and change alignment in mempool.c to be sizeof(void*) instead of sizeof(int), to help 64bit platforms. Thanks to Mike Quintero for an excellent bugreport. * bugfix: combined dataset - improper return of query() routine in some cases * internal code reorg: - move firstword[_lc]() to _util.c - use two structs instead of a set of 2-element arrays in dnset * bugfix: lowercase base zone names given on command line and in `combined' dataset, or else they wont be recognized in queries
2009-02-24Silence some more pkglint warnings.cube2-5/+5
2009-02-24- Update to 1.23cube3-20/+19
- Drop maintainership - Use an option group for libnet version - Add USE_DESTDIR support v1.23 Feb 23 2008 - fixed remotely triggerable NULL dereference in ip_fragment.c - fix DLT_PRISM_HEADER linkoffset calculation - check for DATA_FRAME_IS_QOS in wireless frames - free queued tcp segments with too old seq v1.22 Jul 22 2007 - in TCP stream, the byte with absolute offset 0 was treated as urgent data; fixed - DLT_IEEE802_11_RADIO handling - added a few missing checks for failed malloc v1.21 May 10 2006 - more externals to access libnids' intrinsics from the outside - nids_unregister_*() - UDP checksumming fix (0 is not an error according to RFC768) - nids_params.tcp_workarounds - nids_params.multiproc and queue_limit: merged a patch which creates a separate thread for packet capture; - in killtcp.c, send two more RST packets (required because of MS05-019 patch) - glibc 2.4 syslog.h disaster workaround
2009-02-23Remove net/netbsd-tap. NetBSD 2.0 is just too old; later versions ofcube16-2112/+1
NetBSD have tap(4) in the kernel.
2009-02-23Update to 1.6b:wiz3-7/+86
Adds support for Signature Version 2 for increased security with EC2, SQS, SDB Add support for Regions in EC2 Fixes Issue 172, Issue 178, Issue 180, Issue 181, Issue 182 Fixes issue 165, issue 172, issue 173, issue 174, issue 176, issue 177 Adds initial support for CloudFront (ahem) service Fixes stupid and dangerous copy/paste error in SDB support. Support for EBS, QueryWithAttributes, lots of bugfixes.
2009-02-23Update to 3.0.44:wiz2-6/+6
--- 3.0.44 2009/02/17 List supported encodings in man page for yaz-iconv. Fixed missing SSL libs for --libs output Re-established OID record syntax application-xml. Nobody should use it but we don't want to change soname because of this symbol being absent.
2009-02-23Since rc1 the default location of the pidfiles have changed so updateadrianp2-5/+22
the rc.d scripts accordingly. Problem found by John Klos
2009-02-22Be nice to ancient NetBSD releases. From Hauke Fath.joerg3-9/+13
2009-02-22Update to 0.65:wiz2-9/+11
**** 0.65 January 26, 2009 Fix rt.cpan.org #41076 When the AAAA object was constructed with new_from_hash with an address containing the "::" shorthand notation normalization was not done properly. Fix rt.cpan.org #42375 Typo in Win32.pm Registry root. **** 0.64 December 30, 2008 Feature rt.cpan.org #36656 Added support for the APL record (RFC 3123) The module consists of a list of Address Prefix Item objects as defined in the Net::DNS::RR::APL::ApItem class. NOTE: Class and its interface may be subject to change. Fix rt.cpan.org #11931 Wrong nameserver list handling in Net::DNS::Resolver::Win32 The init method has been rewritten to be based on WIN32::IPhelper for the selection of the domain and the IP addresses. This is believed to be more portable than trying to fetch the data from the registry. We still trying to get the searchlist from the registry. WARNING: If you use Perl under WIN32 (eg ActivePerl or Strawberry Perl) then your module dependency graph has changed drastically Fix IPv6 modules When IO::Socket::INET6 was available but Socket6 was not the code would recurse to infinity. Fix rt.cpan.org #21757 and Feature: Connectivity during test Addition of --no-IPv6-tests and --IPv6-tests option in Makefile.PL. Note: This causes two questions to be asked when building the Makefile instead of one. Besides the test suites are constructed so that all the connectivity testing happen in 001-connectivity.t and inavailability of connectivity over a certain transport is signalled over files t/online.disabled and t/IPv6.disabled respectivly. Both files are removed by t/99-cleanup Fix rt.cpan.org #34511 Priming query logic contained unneeded recursion. Now also fals back to hardcoded hints if there are no nameservers whatsoever. Fix rt.cpan.org #38390 and 37089 Added CD and AD bit control to the resolver. The CD flag defaults to being unset and the AD flags is set by default whenever DNSSEC is available. Both flags default to unset in absence of DNSSEC. Fix rt.cpan.org #37282 Improved error reporting during client disconnect from the nameserver NOTE rt.cpan.org # 40249 Release 0.62 introduced a feature to parse data inside a packet only when needed. This can the following to happen: Eception: corrupt or incomplete data at /usr/lib/perl5/Net/DNS/RR.pm line 510. caught at -e line 1 This may happen when you have undefined your packet data before all the sections have been fully parsed. Such as in: $packet = Net::DNS::Packet->new(\$data); undef($data); The workaround is to force parcing by calling the methods that parse the data. e.g. $packet = Net::DNS::Packet->new(\$data); $packet->answer; $packet->additional; $packet->authority; undef ($data) Fix rt.cpan.org # 41076 and # 41071 Net::DNS::RR->new_from_hash function would not normalize the content of the data so that a method getting a string representation would get inconsistent results depending on whether a RR was created from a string of from a hash. Fix rt.cpan.org # 41296 Compression buggy for large packets. Fix by Kim Minh. Fix rt.cpan.org # 35752 Perl 5.10.0 gave a number of issues on several platforms, prefering XSLoader over Dynaloader seemed to fix those. Bug rt.cpan.org #34510 Buggy setting of "Recursion too deep, aborted" corrected. Feature (rt.cpan.org #39284) The ReplyHandler now also receives a variable with an annonymous has with the connection details. Variables supplied to the Reply handler are: $qname, $qclass, $qtype, $peerhost, $query, $conn The hash referenced by $conn contains the following buckets: sockhost, sockport, peerhost, and peerport. Feature t/08-online.t and t/10-recurse.t In particular environments a query for a.t. will resolve and or middleboxes will replace DNS packet content for queries to the root. A bunch of test is skipped when this (broken) environment is detected. Feature/Bug rt.cpan.org #22019 The initial fix for rt 22019 was to strip a trailing dot from all attributes that where povided as argument for the Net::DNS::RR::new_from_hash function. We have introduced Net::DNS::stripdot, a function that will strip the dots of domain names, taking into account possible escapes (e.g. labels like foo\\\..). As a side effect the new_from_string method will now convert possible spaces that are not trapped by some of the new_from_string functions and convert them to \032 escapes. For information: The internal storage of domain names is using presentation format without trailing dots. Bug @EXPORT and @EXPORT_OK moved to a BEGIN block so that Net::DNS::SEC can make use of exported functions Feature/Bug The Notify handler introduced in 0.63 did not set the OPCODE on the reply appropriately. This has been solved generically by allowing the "Headermask" that is returned as 4th element by the reply or notify handler in the nameserver also allows for the opcode to be set. e.g. as in return ("NXDOMAIN",[],[],[],{ opcode => "NS_NOTIFY_OP" } );
2009-02-22Update from version 0.48 to 0.50.he2-6/+8
Pkgsrc changes: o Add new required dependencies Upstream changes: 0.50 Wed Jan 21 10:42:00 GMT 2009 - add support for an expires header when putting an object to Net::Amazon::S3::Client::Object - make all the classes immutable - add query_string_authentication_uri() to Net::Amazon::S3::Client::Object, suggested by Meng Wong 0.49 Tue Jan 13 09:04:42 GMT 2009 - add support for listing a bucket with a prefix to Net::Amazon::S3::Client::Bucket
2009-02-22Retire old net/netatalk1. Please use net/netatalk instead.taca20-834/+0
2009-02-22Remove netatalk1.taca1-2/+1
2009-02-22* Add cjk(Chinese/Japaneses/Korean) patch which would be included intaca5-68/+72
feature 2.1 release. It could make netatalk1 package obsolete. * Use RCD_SCRIPTS instead of substituting a Makefile to be fix pkglint errors. * Move PKG_OPTION part to options.mk * From patch-aa, remove last change which made by configure/gnu-configure.mk. * Change content of MESSAGE from covered by pkginstall framework to caution about migration from netatalk 1.x. Approved by MAINTAINER and PKGREVISION.
2009-02-21Update to 3.0.42:wiz2-6/+6
--- 3.0.42 2009/02/02 YAZ' RPM spec works for both SUSE Linux Enterprise and RedHat Fedora. Added member named_result_sets for init handler struct for the GFS. This allows a server to disable named result sets. Removed OID record syntax application-xml. Added support for rule-based transliterator for ICU wrapper of YAZ. Fixed bug #1902: yaz-icu XML output. Make YAZ checks Emacs friendly. BITSTRING value shows value. Bug #2346. ISO2709 decoding: skip control characters from indicator data. Omit sort key by default in yaz-icu's output. Allow combined single char options (again) for YAZ' options function. Utility yaz-marcdump got option to display YAZ version (-V). Allow YAZ to use ICU 3.4. Added new ICU test case which illustrates removal of diacritics.
2009-02-21Fix build on OpenSolarisadrianp2-6/+28
http://src.opensolaris.org/source/xref/sfw/usr/src/cmd/bind/getaddrinfo.c.patch
2009-02-21Fix build on OpenSolarisadrianp2-6/+28
http://src.opensolaris.org/source/xref/sfw/usr/src/cmd/bind/getaddrinfo.c.patch
2009-02-21Fix build on OpenSolarisadrianp2-6/+28
http://src.opensolaris.org/source/xref/sfw/usr/src/cmd/bind/getaddrinfo.c.patch
2009-02-21Update to 2.1.6:wiz2-7/+6
Version 2.1.6 (February 19, 2009) User-visible changes: * Renamed the following options - --noproxy => --no-proxy - --noextract => --no-extract - --nologin => --no-login * Butchered --help output - much less verbose now - relocated manual page data to clive.pod * Removed --manual option * Obsoleted "play" and "rencode" config keys in "commands" section * Added --exec option which resembles cclive's --exec command * Removed --play, --noplay, --rencode and --norencode options - use --exec instead * Changed --paste short option from '-x' to '-p' * Removed wmv format (breakcom) - persistant HTTP/404 (not found) error Version 2.1.5 (February 6, 2009) User-visible changes: * Fixed sevenload support Version 2.1.4 (February 1, 2009) User-visible changes: * Fixed Youtube login which sometimes reported failed attempts as OK - Youtube defaults web interface language based on users ip - clive looks for English words in the post-login page to confirm login * Tweaked --version output
2009-02-21Add a startup script for "rsync" in daemon mode loosely based ontron3-2/+25
the example provided under <http://wiki.netbsd.se/Mirroring_NetBSD#Configuring_RSYNC_Server>. This fixes PR pkg/40704 by Brian A. Seklecki.
2009-02-21#if -> #ifdef, fix Sun Studio 64bit build. PR#35559.sketch2-1/+15
2009-02-19Update to dnsmasq-2.47roy5-86/+6
Fixes from 2.46 include: * NetBSD-5 support * Better duplicate IPv6 address detection * DBus introspection * work with blank lines in /etc/ethers
2009-02-19Fix PR 40151 - bootstrap of pkgsrc fails on Ubuntu 8.10abs1-1/+6
- At least Ubuntu 8.1 sets __attribute__((warn_unused_result)) on fwrite() http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509 which means (void)fwrite(...) will *always* generate a warning, so set -Wno-error to bypass this in Linux.sys.mk - Ubuntu 8.1 also jumps through hoops to ensure ARG_MAX is *undefined*, so work around this in tnftp and libnbcompat
2009-02-18Add back support for OpenSSL option, otherwise fetch can't link againstjoerg1-1/+5
static libfetch built with SSL.
2009-02-17oops, the two new patches escaped commit last timespz2-0/+34
2009-02-16DESTDIR supportjoerg3-13/+27
2009-02-16DESTDIR supportjoerg1-1/+5
2009-02-16DESTDIR support.joerg1-2/+4
2009-02-16DESTDIR support.joerg1-10/+7
2009-02-16DESTDIR support. Use pkgsrc-users@NetBSD.org as maintainer.joerg3-9/+11
2009-02-16DESTDIR support.joerg1-3/+5
2009-02-16Convert to user-destdir.wiz3-11/+18
2009-02-15PKG_DESTDIR_SUPPORT must be either user-destdir or destdir, not both.joerg1-2/+2
2009-02-15Fix LP64, require Perl as it installs a Perl module and add DESTDIR.joerg4-6/+55
2009-02-15Add a patch from the "net-snmp" repository to close the vulnerabilitytron3-2/+24
reported in SA33884/CVE-2008-6123.
2009-02-15rpslcheck and RtConfig bring their own parsers for autnums (and treat them asspz4-5/+38
int), fix for extended autnum asdot format.
2009-02-15Update tor to 0.2.0.34.obache3-21/+7
Patch provided by Christian Sturm and back to maintainer. Changes in version 0.2.0.34 - 2009-02-08 o Security fixes: - Fix an infinite-loop bug on handling corrupt votes under certain circumstances. Bugfix on 0.2.0.8-alpha. - Fix a temporary DoS vulnerability that could be performed by a directory mirror. Bugfix on 0.2.0.9-alpha; reported by lark. - Avoid a potential crash on exit nodes when processing malformed input. Remote DoS opportunity. Bugfix on 0.2.0.33. - Do not accept incomplete ipv4 addresses (like 192.168.0) as valid. Spec conformance issue. Bugfix on Tor 0.0.2pre27. o Minor bugfixes: - Fix compilation on systems where time_t is a 64-bit integer. Patch from Matthias Drochner. - Don't consider expiring already-closed client connections. Fixes bug 893. Bugfix on 0.0.2pre20.
2009-02-15Enable DESTDIR support with devel/ruby-setup.taca1-3/+5
(No other functional change.)
2009-02-14add the patch for the -no_default_afi option to RtConfigspz5-13/+33
by David Croft <david@sargasso.net>
2009-02-14switch from previous DESTDIRifying src/Makefile.in patch to a prettier onespz3-22/+14
by Kaj Niemi <kajtzu@basen.net> (bump pkgrev etc)
2009-02-14bump pkgrev too for adding patches for new option -asplainspz1-2/+2
2009-02-14DESTDIR support and fix for newer NetBSD.joerg1-2/+6
2009-02-14DESTDIR support and fix for newer netbsd.joerg1-1/+5
2009-02-14add new option -asplain that makes extended autnums be output as simple numbersspz18-39/+261
instead of in asdot format.
2009-02-13Updated net/mrstat to 1.20abs3-11/+13
move to google code set PKG_DESTDIR_SUPPORT
2009-02-13Update "wireshark" package to version 1.0.6.tron4-350/+9
Changes between 1.0.5 and 1.0.6.: - The following vulnerabilities have been fixed: * On non-Windows systems, Wireshark could crash if the HOME environment variable contained sprintf-style string formatting characters. * Wireshark could crash while reading a malformed NetScreen snoop file. * Wireshark could crash while reading a Tektronix K12 text capture file. - The following bugs have been fixed: * Crash when loading capture file and Preferences: NO Info column * Some Lua scripts may lead to corruption via out of bounds stack * Build with GLib 1.2 fails with error: 'G_MININT32' undeclared * Wrong decoding IMSI with GSM MAP protocol * Segmentation fault for "Follow TCP stream" (Bug 3119) * SMPP optional parameter 'network_error_code' incorrectly decoded * DHCPv6 dissector doesn't handle malformed FQDN * WCCP overrides CFLOW as decoded protocol (Bug 3175) * Improper decoding of MPLS echo reply IPv4 Interface and Label Stack Object * ANSI MAP fix for TRN digits/SMS and OTA subdissection (Bug 3214) - Updated Protocol Support * AFS, ATM, DHCPv6, DIS, E.212, RTP, UDP, USB, WCCP, WPS - New and Updated Capture File Support * NetScreen snoop Changes between version 1.0.4 and 1.0.5: - The following vulnerabilities have been fixed. See the security advisory for details and a workaround. * The SMTP dissector could consume excessive amounts of CPU and memory. * The WLCCP dissector could go into an infinte loop. - The following bugs have been fixed: * Missing CRLF during HTTP POST in the "packet details" window * Memory assertion in time_secs_to_str_buf() when compiled with GCC 4.2.3 * Diameter dissector fails RFC 4005 compliance * LDP vendor private TLV type is not correctly shown * Wireshark on MacOS does not run when there are spaces in its path * Compilation broke when compiling without zlib * Memory leak: saved_repoid * Memory leak: follow_info * Memory leak: follow_info * Memory leak: tacplus_data * Memory leak: col_arrows * Memory leak: col_arrows * Incorrect address structure assigned for find_conversation() in WSP * Memory leak with unistim in voip_calls * Error parsing the BSSGP protocol * Assertion thrown in fvalue_get_uinteger when decoding TIPC * LUA script : Wireshark crashes after closing and opening again a window used by a listener.draw() function. - Updated Protocol Support * ANSI MAP, BSSGP, CIP, Diameter, ENIP, GIOP, H.263, H.264, HTTP, MPEG PES * PostgreSQL, PPI, PTP, Rsync, RTP, SMTP, SNMP, STANAG 5066, TACACS, TIPC * WLCCP, WSP The package update was provided by Matthias Drochner in private e-mail.
2009-02-12add DESTDIR support.markd1-4/+5
2009-02-12add DESTDIR support.markd1-6/+3
2009-02-11add DESTDIR support. Drop maintainership.markd1-12/+13
2009-02-11add DESTDIR supportmarkd1-6/+3
2009-02-11Remove PKGREVISION after the update.joerg1-2/+1