summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2008-02-07Updated to version 1.30.heinz2-6/+9
Pkgsrc changes: - The package supports installation to DESTDIR. - A C compiler is necessary. Changes since version 1.27: ===================================== 1.30 December 16th 2007 - Add GEOIP_MMAP_CACHE support ( Peter Shipley ) - Added last_netmask - gets netmask of network block from last lookup - Merged in Geo::IP::PurePerl code, PurePerl code is mostly API compatible with XS code, except for charset functions - Added set_charset - enables UTF8 output of city name 1.28 July 4th 2007 - Added support for region name lookup in GeoIP City API - Fixed database_info method (Ken Neighbors)
2008-02-07The libfetch version is good enough as user-agent.joerg1-2/+2
2008-02-07Conditionally declare arg on the existance of the socket options.joerg1-2/+5
2008-02-07Don't use warnx, fprintf(stderr, ...) is good enough. Rename logname tojoerg2-11/+9
login_name to avoid shadowing a global variable.
2008-02-07Conditionally use IP_PORTRANGE sockopt and avoid using ss_len when otherjoerg2-10/+17
operations already provided the value.
2008-02-07Kill more __unused.joerg2-5/+5
2008-02-07Expand __func__.joerg1-4/+4
2008-02-07Conditionalize sin_len assignment.joerg1-1/+4
2008-02-07Replace u_char, u_short, u_long, u_int32_t with the unabbrivated versionjoerg1-7/+7
or the POSIX type.
2008-02-07Always compile for large file support.joerg1-0/+1
2008-02-07Don't use __unused.joerg3-9/+9
2008-02-07Include sys/types.h to get time_t.joerg1-1/+2
2008-02-07Don't use __BEGIN_DECL/__END_DECL, just inline them. Ensure thatjoerg1-4/+9
the external variables are covered as well. Directly include stdio.h.
2008-02-07Don't shadow wait(2).joerg1-17/+17
2008-02-07EAUTH and ENEEDAUTH might not exist, so use them conditionally.joerg2-2/+10
To flag HTTP authentication errors, fallback to EPERM.
2008-02-07bcopy -> memcpyjoerg3-9/+9
2008-02-07MAXNAMELEN -> PATH_MAX to match fetch.h.joerg2-3/+3
2008-02-07Import libfetch-2.0, based on the FreeBSD version of today with a numberjoerg18-0/+5468
of smaller changes to not depend on sys/param.h. This library is intended to replace the tnftp dependency in pkg_install.
2008-02-06Updated to version 1.4.4.heinz7-18/+114
Pkgsrc changes: - Added support for installation to DESTDIR. - More fixes for the man page geoiplookup.1 (patch-ab) - Two additional patches patch-ac and patch-ad to make geoiplookup not crash with segmentation fault if the data file either does not exist or has the wrong format. - Patches -ab, -ac, and -ad submitted to the bugtracker at sourceforge.net. - Updated DESCR with date of data file. - Added license information. Changes since version 1.4.0: ============================ 1.4.4 2008-1-21 * Updated original geoipupdate to return "Invalid product ID or subscription expired" * Added BL/Saint Barthelemy, MF/Saint Martin (ISO-3166-1 additions) * Check for illegal IP strings, return 0 if IP is not well formed IPv4 e.g. 1.2.3.4.5 and 1.2.3 * Clarified that while core GeoIP library is LGPL, libGeoIPUpdate depends on md5.c and types.h which are GPL. * speedup the conversion from ipstring to ipnum in _GeoIP_addr_to_num. Doubles the speed of GEOIP_MEMORY_CACHE and GEOIP_MMAP_CACHE * Added new mmap shared memory caching option, GEOIP_MMAP_CACHE (Peter Shipley, LookSmart) - mmaps: our maps are shared, but we need only private readonly pages 1.4.3 2007-8-30 ! CHANGE with geoiplookup facility: -v flag now returns database info for all databases, not just GeoIP Country * Added ability to get netmask of network block from last lookup using GeoIP_last_netmask * Fixed GeoIP_database_info bug with GeoLite City * Replaced 4 with sizeof(char*) to fix issues with geoipupdate on 64 Bit machines * Added GeoIP_set_charset function - enables UTF8 output of city name if GEOIP_CHARSET_UTF8 flag is passed to GeoIP_set_charset * Fixed segfault issue if calling GeoIP_db_avail before opening a database * Added continent_code to GeoIP City's record struct (Frank Mather) 1.4.2 2007-2-8 * Added -d flag to enable custom path for geoipupdate utility program (Frank Mather) * Replaced _WIN32 with WIN32 since WIN32 is already set by compilers * Moved var definitions to top of code, defined size_t (Guenter Knauf) * Added Makefile.win32, Makefile.netware, get_ver.awk, geoip.ico to EXTRA_DIST in Makefile.am (Guenter Knauf) 1.4.1 2007-1-2 * Replaced CS/Serbia and Montenegro with RS/Serbia, removed ZR/Zaire, added ME/Montenegro * Added AX/Aland Islands, GG/Guernsey, IM/Isle of Man, JE/Jersey (ISO-3166-1 changes) * Added GeoIP_time_zone_by_country_and_region, to lookup zoneinfo timezone by country and region (Frank Mather) * Added GeoIP_region_name_by_code, to lookup region name from region code (Frank Mather) * added -f and -d flags to enable custom paths for geoiplookup utility program (Frank Mather) * Added benchmarks for GeoIP Region and City in test/benchmark.c (Frank Mather) * Fixed build issue when using --as-needed flag (Diego 'Flameeyes' Pettenò) * Add sanity checking for filename returned by MaxMind.com server for geoipupdate filename (Dean Gaudet, arctic.org) * Fixed memory leaks under error conditions, buffer overflow using sprintf, and issue where a corrupted cache file could core dump the file (Nick Galbreath, Right Media Inc)
2008-02-06Add py-boto to net/Makefile.bjs1-1/+2
2008-02-06Add patch-aa.bjs1-0/+12
2008-02-06Import boto-1.0a. This package was imported so that the update ofbjs5-0/+209
sysutils/duplicity could use amazon web services. Blurb: Boto is a Python package that provides interfaces to Amazon Web Services. At the moment, boto supports S3 (Simple Storage Service) and SQS (Simple Queue Service) via the REST API's provided by those services and EC2 (Elastic Compute Cloud) via the Query API. The intent is to support additional services in the future. The goal of boto is to provide a very simple, easy to use, lightweight wrapper around the Amazon services. Not all features supported by the Amazon Web Services will be supported in boto. Basically, those features I need to do what I want to do are supported first. Other features and requests are welcome and will be accomodated to the best of my ability. Patches and contributions are welcome! Boto was written using Python 2.4.1 on Mac OSX. It has also been tested on Linux Fedora Core 4 using Python 2.4.1. Boto requires no additional libraries or packages other than those that are distributed with Python 2.4.1. NOTE: A patch was supplied recently by josh.bressers that should allow boto to run in Python 2.3. I have not tested this myself. [NOTE: I did not mark 23 as an acceptable python version] There is some documentation for boto, mainly in the form of tutorials. Check in the doc directory of the distribution. You can also check out the unit tests in the tests directory of the distribution for examples of use. You AWS credentials can be passed into the methods that create S3 and SQS connections. Alternatively, boto will check for the existance of the following environment variables to ascertain your credentials: AWS_ACCESS_KEY_ID - Your AWS Access Key ID AWS_SECRET_ACCESS_KEY - Your AWS Secret Access Key
2008-02-04Needs -lrt on NetBSD-currenttnn1-1/+7
2008-02-04PR 37952: Aleksey Cheusov: more missed tools in USE_TOOLStnn1-1/+2
2008-02-04Reset maintainer on his request.wiz1-2/+2
2008-02-04Update wget to 1.11.obache3-12/+14
* Changes in Wget 1.11. ** Timestamping now uses the value from the most recent HTTP response, rather than the first one it got. ** Authentication information is no longer sent as part of the Referer header in recursive fetches. ** No authentication credentials are sent until a challenge is issued, for improved security. Authentication handling is still not RFC-compliant, as once a Basic challenge has been received, it will assume it can send credentials to any URL at that same host, and not just the ones at or below the original authenticated location. Credentials for Digest authentication are still never saved or issued automatically, and continue to require a challenge for each resource. ** Added --max-redirect option, allowing the user to specify what should be the maximum number of HTTP redirects to follow. ** Wget now supports saving HTTP downloads using file names specified by the `Content-Disposition' header. This is a standard way of specifying the file name used by many web dynamically generated pages. However, the current implementation is inefficient, and known to have bugs. It is EXPERIMENTAL only, and not enabled by default. Use --content-disposition to enable it. ** The new option `--ignore-case' makes Wget ignore case when matching files, directories, and wildcards. This affects the -X, -I, -A, and -R options, as well as globbing in FTP URLs. ** ETA projection is now displayed in "dot" progress output as well as in the default progress bar. (The dot progress is used by default when logging Wget's output to file using the `-o' option.) ** The "lockable boolean" argument type is no longer supported. It was only used by the passive_ftp .wgetrc setting. If you're running broken scripts or Perl modules that unconditionally specify `--passive-ftp' and your firewall disallows it, you can override them by replacing wget with a script that execs wget "$@" --no-passive-ftp. ** The source code has been migrated to Mercurial. The repositories are available at http://hg.addictivecode.org/. Prior to this, the source code was hosted on Subversion (migrated from the original CVS); you can still get access to older tags and branches for Wget in the Subversion repository at http://addictivecode.org/svn/wget/.
2008-02-03Update libupnp to 1.6.5.obache2-6/+6
Changes: ******************************************************************************* Version 1.6.5 ******************************************************************************* 2008-02-02 Marcelo Jimenez <mroberto(at)users.sourceforge.net> * Peter Hartley's fix for wrong sized variable beeing passed to http_MakeMessage() on 64 bit architectures.
2008-01-30The package supports installation to DESTDIR.heinz1-1/+3
2008-01-30Provide an rc script. PKGREVISION++tnn3-2/+26
2008-01-30Update pen to the latest version (0.17.2, which almost a year old now).ghen2-7/+6
070912 Added sanity check to init() to make sure that servers_max is large enough for the number of servers specified on the command line. Released 0.17.2. 070829 Faster string duplication courtesy of Nigel Horne. 070502 Updated automake links. 070212 Updated INSTALL with instructions for increasing the number of connections on Windows. 061204 Include server weight in response to "penctl servers" command. Set server weight on command line. Server is specified as host:port:maxconn:hard:weight. 060627 Bugfix by Chris Elsworth: server_by_weight would never consider blacklisted servers, which kept them blacklisted indefinitely. Released 0.17.1. 051230 Added code by Chris Elsworth for kqueue support. Configure with --with-kqueue to enable. Released 0.17.0. 051215 Changed the configure option for ssl to --with-experimental-only-ssl. Released 0.16.0. 040709 Added an "abuse server" for naughty clients that have been denied access by an acl. Works similar to the emergency server, use command-line option "-B host:port" to enable.
2008-01-30Re-add missing distinfo for solaris. Side effect, fixes PR 33854.obache1-1/+4
2008-01-29Changed TWISTED_MASTER_SITES to a working site. This should resolveheinz1-3/+2
PR pkg/37913 by Jorge Niedbalski R.
2008-01-29Supports DESTDIR.joerg2-2/+6
2008-01-27Only for gcc, and even in that case there are lots of reasonablerillig1-1/+2
compiler warnings.
2008-01-27PKGREVISION++ for the previous change.rillig1-2/+2
2008-01-27Fixed a segmentation fault when calling "socat -hhh".rillig3-1/+34
2008-01-27Update libupnp to 1.6.4.obache4-13/+13
Changes: ******************************************************************************* Version 1.6.4 ******************************************************************************* 2008-01-23 Marcelo Jimenez <mroberto(at)users.sourceforge.net> * Workaround for a problem with the new automake AM_CONDITIONAL macro from autotools-1.10. Thanks to Ingo Hofmann for helping with debugging this one. 2008-01-22 Marcelo Jimenez <mroberto(at)users.sourceforge.net> * Added quoting to macros AC_CONFIG_AUX_DIR, AC_CONFIG_MACRO_DIR and AC_CONFIG_SRCDIR in configure.ac. Also changed the name of the auxiliary directory in AC_CONFIG_AUX_DIR to build-aux. 2008-01-22 Marcelo Jimenez <mroberto(at)users.sourceforge.net> * Fix for setsockopt() in Threadpool.c to allow more than one process to join the multicast-group on OSX. Thanks to Ingo Hofmann. 2008-01-22 Marcelo Jimenez <mroberto(at)users.sourceforge.net> * Using defined(__OSX__) || defined(__APPLE__) instead of just defined(__OSX__) in the code. Thanks to Ingo Hofmann and Chris Pickel. 2008-01-21 Marcelo Jimenez <mroberto(at)users.sourceforge.net> * Fix for isFileInVirtualDir. Thanks to Peter Hartley for the patch. 2008-01-07 Marcelo Jimenez <mroberto(at)users.sourceforge.net> * Putting back a "defined(__OSX__)" that has been removed in the previous *BSD patch. Thanks to Chris Pickel for pointing it out. 2008-01-07 Marcelo Jimenez <mroberto(at)users.sourceforge.net> * SF Patches Tracker [ 1865812 ] typo in docs comment Submitted By: Hartmut Holzgraefe - hholzgra typo in docs comment ACCAPTED instead of ACCEPTED in @name UPNP_E_UNSUBSCRIBE_UNACCAPTED [-302] Also, the documentation file name was mispelled and was corrected in the Makefile.am.
2008-01-25Update youtube-dl to 2008.01.24. No change log available, but this versiondsainty2-6/+6
does cope with current youtube pages, unlike the previous version.
2008-01-24Correct PLIST on Solaris (From PR 33259 by spz@).is1-1/+3
2008-01-21Need to replace variables in uucpd/pathnames.hobache1-2/+3
Noticed by Eric Schnoebelen in PR 37596. Also uucpd/uucpd.8. Bump PKGREVISION. XXX: Should also replace hard-coded paths in etc/* files.
2008-01-20Update to 0.1.2.19:jschauma3-19/+20
Tor 0.1.2.19 fixes a huge memory leak on exit relays, makes the default exit policy a little bit more conservative so it's safer to run an exit relay on a home system, and fixes a variety of smaller issues. https://www.torproject.org/download.html Changes in version 0.1.2.19 - 2008-01-17 o Security fixes: - Exit policies now reject connections that are addressed to a relay's public (external) IP address too, unless ExitPolicyRejectPrivate is turned off. We do this because too many relays are running nearby to services that trust them based on network address. o Major bugfixes: - When the clock jumps forward a lot, do not allow the bandwidth buckets to become negative. Fixes bug 544. - Fix a memory leak on exit relays; we were leaking a cached_resolve_t on every successful resolve. Reported by Mike Perry. - Purge old entries from the "rephist" database and the hidden service descriptor database even when DirPort is zero. - Stop thinking that 0.1.2.x directory servers can handle "begin_dir" requests. Should ease bugs 406 and 419 where 0.1.2.x relays are crashing or mis-answering these requests. - When we decide to send a 503 response to a request for servers, do not then also send the server descriptors: this defeats the whole purpose. Fixes bug 539. o Minor bugfixes: - Changing the ExitPolicyRejectPrivate setting should cause us to rebuild our server descriptor. - Fix handling of hex nicknames when answering controller requests for networkstatus by name, or when deciding whether to warn about unknown routers in a config option. (Patch from mwenge.) - Fix a couple of hard-to-trigger autoconf problems that could result in really weird results on platforms whose sys/types.h files define nonstandard integer types. - Don't try to create the datadir when running --verify-config or --hash-password. Resolves bug 540. - If we were having problems getting a particular descriptor from the directory caches, and then we learned about a new descriptor for that router, we weren't resetting our failure count. Reported by lodger. - Although we fixed bug 539 (where servers would send HTTP status 503 responses _and_ send a body too), there are still servers out there that haven't upgraded. Therefore, make clients parse such bodies when they receive them. - Run correctly on systems where rlim_t is larger than unsigned long. This includes some 64-bit systems. - Run correctly on platforms (like some versions of OS X 10.5) where the real limit for number of open files is OPEN_FILES, not rlim_max from getrlimit(RLIMIT_NOFILES). - Avoid a spurious free on base64 failure. - Avoid segfaults on certain complex invocations of router_get_by_hexdigest(). - Fix rare bug on REDIRECTSTREAM control command when called with no port set: it could erroneously report an error when none had happened.
2008-01-18Per the process outlined in revbump(1), perform a recursive revbumptnn72-115/+144
on packages that are affected by the switch from the openssl 0.9.7 branch to the 0.9.8 branch. ok jlam@
2008-01-17No / between DESTDIR and PREFIXtnn1-2/+2
2008-01-17Added net/unfs3 version 0.9.20tnn1-1/+2
2008-01-17Import unfs3-0.9.20 as net/unfs3.tnn5-0/+58
This is a portable NFSv3 server implemented entirely in userspace.
2008-01-14reduced Hagen Boehms cache patch to the bare minimum nececssary and also addingspz4-58/+35
a pair of extra {}. It's a marvel what these can do for you. :) Thanks to Daryl Collins <daryl@internode.com.au> for bringing the problem to my attention.
2008-01-14Added Solaris libraries. Removed patch-aa, since it is easier to justrillig3-15/+7
override do-build.
2008-01-13patch-ac wasn't applying cleanlytonio2-5/+6
2008-01-12Update HOMEPAGE and MASTER_SITES.wiz2-8/+8
2008-01-12db4 update related revision bumpadam4-8/+8