summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2009-11-20Update to 2.32.52, ok tonio.wiz5-63/+22
Set license. Changes since 2.32.44: * Improvement to the code for resuming directory transfers: (1) make sure file information (permissions, ...) has been properly set when using a previously transferred temp file (2) make sure previously transferred directories are writable (other changes made in the developer version of Unison require a protocol change) * Got rid of the 16MiB marshalling limit by marshalling to a bigarray * Ignore one hour differences for deciding whether a file may have been updated. This avoids slow update detection after daylight saving time changes under Windows. This makes it slightly more likely to miss an update, but that should be safe enough. * Improved Unison icon under Windows * Case sensitivity information put in the archive (in a backward compatible way) and checked when the archive is loaded * Uses improved emulation of "select" call provided by Ocaml 3.11 under Windows (the GUI does not freeze as much during synchronization) * Upgraded to GPL version 3 and added copyright notice to documentation files. * Unison can sometimes fail to transfer a file, giving the unhelpful message "Destination updated during synchronization" even though the file has not been changed. This can be caused by programs that change either the file's contents *or* the file's extended attributes without changing its modification time. I'm not sure what is the best fix for this – it is not Unison's fault, but it makes Unison's behavior puzzling – but at least Unison can be more helpful about suggesting a workaround (running once with 'fastcheck' set to false). The failure message has been changed to give this advice. * Text UI o During update detection, display status by updating a single line rather than generating a new line of output every so often. That should be less confusing. o In repeat mode, don't save the archives when there is no update. Indeed, in this mode, we should minimize the amount of work performed and it is unlikely that the archives have changed much. * Bugfixes o Fixed quotation of paths and names when writing to a preference file o Fixed bug resulting in slow performances when transferring a file using our rsync implementation from a 64-bit architecture to a 32-bit architecture. o Fixed bug in Lwt_unix.run which could make it fail with a Not_found exception (see [Not_found raised in tryCopyMovedFile] errors) o Properly deals with non-conformant AppleDouble files produced by Mac OS X. o Fixed bug that results in Unison missing ressource fork changes o Applied a patch from Karl M to make the GTK2 version build with OCaml 3.11 on Windows. o Added some extra debugging code to remote.ml to give more informative error messages when people encounter the longstanding "assert failed during file transfer" bug. o Applied patch from Antoine Reilles for NetBSD compilation o Resizing the update window vertically no longer moves the status label. Fix contributed by Pedro Melo. Changes since 2.31: * Minor fixes and improvements: o Ignore one hour differences when deciding whether a file may have been updated. This avoids slow update detection after daylight saving time changes under Windows. This makes Unison slightly more likely to miss an update, but it should be safe enough. o Fix a small bug that was affecting mainly windows users. We need to commit the archives at the end of the sync even if there are no updates to propagate because some files (in fact, if we've just switched to DST on windows, a LOT of files) might have new modtimes in the archive. (Changed the text UI only. It's less clear where to change the GUI.) o Don't delete the temp file when a transfer fails due to a fingerprint mismatch (so that we can have a look and see why!) We've also added more debugging code togive more informative error messages when we encounter the dreaded and longstanding "assert failed during file transfer" bug Changes since 2.27: * If Unison is interrupted during a directory transfer, it will now leave the partially transferred directory intact in a temporary location. (This maintains the invariant that new files/directories are transferred either completely or not at all.) The next time Unison is run, it will continue filling in this temporary directory, skipping transferring files that it finds are already there. * We've added experimental support for invoking an external file transfer tool for whole-file copies instead of Unison's built-in transfer protocol. Three new preferences have been added: o copyprog is a string giving the name (and command-line switches, if needed) of an external program that can be used to copy large files efficiently. By default, rsync is invoked, but other tools such as scp can be used instead by changing the value of this preference. (Although this is not its primary purpose, rsync is actually a pretty fast way of copying files that don't already exist on the receiving host.) For files that do already exist on (but that have been changed in one replica), Unison will always use its built-in implementation of the rsync algorithm. o Added a "copyprogrest" preference, so that we can give different command lines for invoking the external copy utility depending on whether a partially transferred file already exists or not. (Rsync doesn't seem to care about this, but other utilities may.) o copythreshold is an integer (-1 by default), indicating above what filesize (in megabytse the external copying utility specified by copyprog. Specifying 0 will cause ALL copies to use the external program; a negative number will prevent any files from using it. (Default is -1.) Thanks to Alan Schmitt for a huge amount of hacking and o an anonymous sponsor for suggesting and underwriting this extension. * Small improvements: o Added a new preference, dontchmod. By default, Unison uses the chmod system call to set the permission bits of files after it has copied them. Butin some circumstances (and under some operating systems), the chmod call always fails. Setting this preference completely prevents Unison from ever calling chmod. o Don't ignore files that look like backup files if the backuplocation preference set to central o Shortened the names of several preferences. The old names are also still supported, for backwards compatibility, but they do not appear in the documentation. o Lots of little documentation tidying. (In particular, preferences are separated into Basic and Advanced! This should hopefully make Unison a little more approachable for new users. o Unison can sometimes fail to transfer a file, giving the unhelpful message "Destination updated during synchronization" # * Further improvements to the OS X GUI (thanks to Alan Schmitt and Craig Federighi). # Very preliminary support for triggering Unison from an external filesystem-watching utility. The current implementation is very simple, not efficient, and almost completely untested—not ready for real users. But if someone wants to help improve it (e.g., by writing a filesystem watcher for your favorite OS), please make yourself known! On the Unison side, the new behavior is very simple: * use the text UI * start Unison with the command-line flag "-repeat FOO", where FOO is name of a file where Unison should look for notifications of changes * when it starts up, Unison will read the whole contents of this file (on both hosts), which should be a newline-separated list of paths (relative to the root of the synchronization) and synchronize just these paths, as if it had been started with the "-path=xxx" option for each one of them * when it finishes, it will sleep for a few seconds and then examine the watchfile again; if anything has been added, it will read the new paths, synchronize them, and go back to sleep * that's it! To use this to drive Unison "incrementally," just start it in this mode and start up a tool (on each host) to watch for new changes to the filesystem and append the appropriate paths to the watchfile. Hopefully such tools should not be too hard to write. # Bug fixes: * Fixed a bug that was causing new files to be created with permissions 0x600 instead of using a reasonable default (like 0x644), if the 'perms' flag was set to 0. (Bug reported by Ben Crowell.) * Follow maxthreads preference when transferring directories.
2009-11-19Detect automatically if libfetch needs linkage against OpenSSL and dropjoerg6-41/+357
the option. Make sure to actually honour the libraries detected by configure. This should fix the remaining issues on Solaris.
2009-11-19Add vnstatsborrill1-1/+2
2009-11-19vnStat is a network traffic monitor that keeps a log of daily network trafficsborrill7-0/+129
for the selected interface(s). vnStat isn't a packet sniffer. vnStat can be used even without root permissions. vnStat is focused on being small, simple and stable.
2009-11-18Update to 2.1rc21. From Changelog:manu2-7/+6
* Rebuilt OpenVPN Windows installer with OpenSSL 0.9.8l to address CVE-2009-3555. Note that OpenVPN has never relied on the session renegotiation capabilities that are built into the SSL/TLS protocol, therefore the fix in OpenSSL 0.9.8l (disable SSL/TLS renegotiation completely) will not adversely affect OpenVPN mid-session SSL/TLS renegotation or any other OpenVPN capabilities. * Added additional session renegotiation hardening. OpenVPN has always required that mid-session renegotiations build up a new SSL/TLS session from scratch. While the client certificate common name is already locked against changes in mid-session TLS renegotiations, we now extend this locking to the auth-user-pass username as well as all certificate content in the full client certificate chain.
2009-11-17Update to 3.2.6:wiz3-8/+8
* Changes in ekiga 3.2.6 (2009-09-22) ** User-visible fixes - Fixed crashes shown as assertion failed in /usr/include/ptlib/safecoll.h:813 - Fixed crash when device list is empty or contains non-latin1 characters - Fixed crash when pressing shift-f10 (popup menu) in Preferences window - Fixed possible crash when garbage collecting REGISTER requests - Fixed possible segfault when receiving a NOTIFY - Fixed freeze by preventing SIP handlers retry timer from executing during destruction - Fixed freeze during packet write - Fixed "Lockup after a day of idle" in publishing code - Fixed various deadlocks in the OPAL subscription code - Added "%limit" workaround for registrars which refuse several contacts during registration - Fixed "Contacts never go offline" - Fixed "New SIP account mangles fields if Authentications User is empty" - Make sure the output device is set before a call - Fixed port handling when registering to a proxy with a non-standard port - Fixed "In some circumstances, smileys are not displayed graphically" - Improved audio latency when not collecting all of the audio data - Fixed the newmessage.wav file - Fixed "Accounts were automatically active after editing them" - Make possible to register e.g. user@a.b as user name as required by some providers - Remove deprecated "Encoding" field from desktop file ** Protocol fixes - Fixed problem with REGISTER IntervalTooBrief response handling not using correct interface for new transaction - Fixed "480 Temporarily Unavailable" response handling - Fixed problem with doing DNS lookup when using explicit proxy or presence agent - Fixed problem with PUBLISH using wrong expiry after Interval Too Brief error - If we find no authentication information when subscribing, keep trying as it could become available at a later stage - Changed so does not put both global and media specific connection addresses in SDP if they are the same (needed for freephonie SIP registrar) - Fixed support for unusual SIP "start with hold", that is an initial offer INVITE with a connection address of 0.0.0.0 - Fixed failure to retry (after a suitable period) REGISTER/SUBSCRIBE if get transport level timeout - Added closing of our local media streams if remote sends a re-INVITE and leaves out streams (e.g. video) that were there previously - Fixed problems when can not bind to any interface - Fixed various problems with some SDP options - Fixed regression where the username would be lost from the Contact field - Fixed invalid request-uri in BYE request - Fixed issue with overlapping INVITEs - Fixed H.263-1998 plug in compilation, by asking latest avcodec - Fixed "OpalBitRateCalculator limits bitrates" - Fixed "SIP wrong response on a failed REFER-request" - Fixed "SIP: OK response to CANCEL incomplete" - Do not send "100 Trying" message when receiving a NOTIFY message - Fixed incorrect register/subscribe refresh timer calculation ** Build fixes - Support building on kFreeBSD - Fixed problem with moving libsoup api - Various fixes for SIP and H323 configuration - Fixed "A build error when generating SunAudio ptlib plugin" - Fixed "The video convertor of YUY2toYUV420P in ptlib does not work" - Fixed "The absence of libv4l2 should not block V4L2 ptlib plugin" - and other minor changes ** Windows port fixes - Thanks to Michael Rickmann's continuous work, Windows port has reached a quality almost comparable to GNU/Linux version. We invite people to test it, see ekiga wiki. Some improvements: - shortened audio delay - DirectX video input and output - device name handling - fixed audio volume - fixed building with mingw - made so the linker doesn't find main on win32 - Keep the output sound volume across calls ** Distributor-visible changes - Changed default for AVC plug in to be disabled until someone fixes the plug in - Note: Pulse audio server does not play nicely with ekiga, very high latencies are noticed ** Translation fixes - Updated translations: ar, bn, et, ga, hi, hu, ko, lt, ml, nb, sr, sr@latin, uk, zh_HK, zh_TW - New translations: ca@valencia - Updated help translations: de
2009-11-16Update filezilla to 3.3.0.1zafer2-6/+6
Changelog: * Ctrl-Tab and Ctrl-Shift-Tab to cycle tabs now loop around if reaching the end of the tab list * Fix crash on showing/hiding of directory trees after closing a tab * Tabs no longer become unresponsive if not approving to close a busy tab * Directory comparison did not work properly on all but the first tab * Fix spurious error messages if connecting to a new site while synchronized browsing is enabled * *nix: Work around a bug in KDE preventing restore from minimize to notification area * Do not show update dialog if there is already some other dialog open * Fix synchronized browsing option on site-specific bookmarks
2009-11-15Update to 3.0.50:wiz3-7/+8
--- 3.0.50 2009/11/02 Add support for extra request / response data for SRU codecs and GFS. The Z_SRW_PDU structure has two new members extraResponseData_{buf,len} for extra data response buffer and length. For the GFS, both request and response data (XML) is carried in extra_args and extra_response_data for the search handler. Patch by Ko van der Sloot. ZOOM: For queries that cannot be converted to the specified rpnCharset, ZOOM now returns a diagnostic on the client-side ('invalid query' / 10010). This fixes bug #2113. yaz-client fix: If cmdfile is passed to yaz-client (option -f) and that cmdfile included a 'quit' command that would result in a memory violation.
2009-11-15Only check if in the foreground on systems that have TIOCPGRP.joerg1-0/+2
2009-11-15Add -lresolv to LIBS.SunOS. From Mehul Sanghvi in PR pkg/38585.snj1-2/+2
2009-11-15As noted by Thierry Lacoste in PR pkg/42251, NAGIOS_GROUP was used on thesnj1-3/+3
right side of an assignment. Change this to ${NAGIOS_GROUP} so that the group is created properly. Bump PKGREVISION to 2.
2009-11-15Update to 0.2.1.20. From Christian Sturm in PR pkg/42311.snj2-6/+6
Changes in version 0.2.1.20 - 2009-10-15 o Major bugfixes: - Send circuit or stream sendme cells when our window has decreased by 100 cells, not when it has decreased by 101 cells. Bug uncovered by Karsten when testing the "reduce circuit window" performance patch. Bugfix on the 54th commit on Tor -- from July 2002, before the release of Tor 0.0.0. This is the new winner of the oldest-bug prize. - Fix a remotely triggerable memory leak when a consensus document contains more than one signature from the same voter. Bugfix on 0.2.0.3-alpha. - Avoid segfault in rare cases when finishing an introduction circuit as a client and finding out that we don't have an introduction key for it. Fixes bug 1073. o Major features: - Tor now reads the "circwindow" parameter out of the consensus, and uses that value for its circuit package window rather than the default of 1000 cells. Begins the implementation of proposal 168. o New directory authorities: - Set up urras (run by Jacob Appelbaum) as the seventh v3 directory authority. - Move moria1 and tonga to alternate IP addresses. o Minor bugfixes: - Fix a signed/unsigned compile warning in 0.2.1.19. - Fix possible segmentation fault on directory authorities. Bugfix on 0.2.1.14-rc. - Fix an extremely rare infinite recursion bug that could occur if we tried to log a message after shutting down the log subsystem. Found by Matt Edman. Bugfix on 0.2.0.16-alpha. - Fix an obscure bug where hidden services on 64-bit big-endian systems might mis-read the timestamp in v3 introduce cells, and refuse to connect back to the client. Bugfix on 0.2.1.6-alpha. - We were triggering a CLOCK_SKEW controller status event whenever we connect via the v2 connection protocol to any relay that has a wrong clock. Instead, we should only inform the controller when it's a trusted authority that claims our clock is wrong. Bugfix on 0.2.0.20-rc; starts to fix bug 1074. - We were telling the controller about CHECKING_REACHABILITY and REACHABILITY_FAILED status events whenever we launch a testing circuit or notice that one has failed. Instead, only tell the controller when we want to inform the user of overall success or overall failure. Bugfix on 0.1.2.6-alpha. Fixes bug 1075. - Don't warn when we're using a circuit that ends with a node excluded in ExcludeExitNodes, but the circuit is not used to access the outside world. This should help fix bug 1090. Bugfix on 0.2.1.6-alpha. - Work around a small memory leak in some versions of OpenSSL that stopped the memory used by the hostname TLS extension from being freed. o Minor features: - Add a "getinfo status/accepted-server-descriptor" controller command, which is the recommended way for controllers to learn whether our server descriptor has been successfully received by at least on directory authority. Un-recommend good-server-descriptor getinfo and status events until we have a better design for them.
2009-11-14Bump to 2.51roy2-6/+6
Changes from 2.50 include: * TFTP supports Windows/Dos \ separator. * Warn if IP duplicated in /etc/ethers * Test upstream responsiveness to work around upstream server slowdowns * PXE and relay agent fixes
2009-11-13fetch-1.6:joerg8-16/+8371
- autoconfig glue to detect presence of termios.h etc. - On NetBSD default to getpass. Otherwise implement the password reading using termios.h if present, falling back to getpassphrase/getpass or plain fgets.
2009-11-13Only use SIGINFO if the platform supports it.joerg1-1/+12
2009-11-13remove line for non-existant SUBDIRjnemeth1-2/+1
2009-11-12NetBSD's tun driver has no broadcast support. When configured withmanu3-3/+27
a tun device and subnet topology, OpenVPN insisted on setting a broadcast address on the tun device, causing a fatal error. This patch fixes that, and has been submitted upstream
2009-11-12resolve conflict between gnome-vfs and gnome-vfs-dns-sd (which hasdrochner3-23/+0
been there from the beginning): -add an "avahi" option to gnome-vfs (default off) -add CONFLICTS statement -bump PKGREVISION -remove gnome-vfs-dns-sd
2009-11-11Update filezilla to 3.3.0zafer2-6/+6
Changelog: Aborting a previous connection attempt by establishing a new connection in the same tab no longer renders the new connection unusable *nix: Quote filenames containing spaces if editing using default editor for text files *nix: Fix crash while emitting queue finished notifications *nix: Display desktop notification if all transfers have finished and FileZilla isn't focused Navigating controls inside tab using tabulator key now works on all tabs Fix splitter positions on horizontal interface layouts Give choice to abort old connection or to open a new tab when trying to connect while already connected Double-click on empty space in tabbar opens new tab Middle-click on tab closes it Use splitter positions and filelist column setup of previous tab when opening new one Make betas and release candidates check daily for new versions Fix crash when leaving settings dialog after tabs have been closed Fix crash on changing tabs if old tab has site-specific bookmarks but new one doesn't Layout of tabs no longer changes after leaving settings Fix issues with remembering last used server Don't use bold font for active tab Recursive operations now working in all tabs Tabbed interface to connect to multiple server at the same time New welcome screen Add Open to local directory tree context menu Fix mismatch of displayed and actually performed default file exists action MSW: Update mingwm10.dll to fix a crash at initialization MSW: FTP over TLS no longer crashes for users of VIA CPUs *nix: Fix crashes due to race condition in dbus code Fix SHA-512 calculating incorrect hashes on 64bit systems, used by SFTP and the update wizard
2009-11-10Update p5-DNS-ZoneParse from version 0.96 to version 0.99.seb2-6/+6
Upstream changes: 0.99 - Tue Oct 20 2009 - (je) Support for callback to catch unparsable lines. - (je) Keep a counter of unparsable lines after parsing. - (je) Support new record types (SRV, TXT, RP, HINFO, LOC). - (je) Automatic un/escaping of special characters. - (je) Reformat regular expressions for clarity. - (je) Update file open syntax. - (je) Require Perl 5.6+. - (je) Support for Unicode names (bug 27527). - (je) Support TXT records containing a semicolon (bug 50165). - (je) Support backslashes in zone data (bug 12679). - (je) Support SRV records (bug 24402). - (je) Support names ending in what looks like a record type (bug 39006). - (je) Increase unit test coverage. - (je) Improve parsing for lines containing comments. - (je) Improve parsing for multi-line records. 0.98 - Skipped 0.97 - Skipped
2009-11-06fix syntax error for python26 in khashmir/test_krpc.pyspz2-1/+35
patch kudos Attila Tóth for Gentoo
2009-11-05nsd-3.2.3:joerg3-26/+6
* Bug #236: Allow RRs before the SOA in a zonefile. * Bug #229: Remove the C99 code. * Bug #253: Don't put NS RRs in a response with QTYPE=DNSKEY. * Bug #263: Make TSIG algorithm comparison case insensitive. * Bug #266: Build failed on systems without strptime. * Fix install hickup. * Fix to use 4096 EDNS limit for IPv6 on Linux.
2009-11-05Drop '(fork of zebra)' from COMMENT as that's now only of historicalgdt1-2/+3
interest rather than something useful.
2009-11-04Update to KDE 4.3.3markd1-4/+4
KDE 4.3.3 has a number of improvements that will make your life just a little bit better. Some of KWin's effects have been smoothed and freed of visual glitches, JuK should now be more stable, KDE PIM has seen its share of improvements while in the back-rooms of KDE, the developers are working hard on porting all applications to the new Akonadi storage and cache.
2009-11-04quagga now checks explicitly for GNU awk features, so USE_TOOLS it.gdt1-2/+2
2009-11-03As advised by wiz@:jym1-3/+2
- add ${PKGMANDIR}/man1 and bin directories to INSTALLATION_DIRS to support installation using user-destdir - remove the url2pkg marker Thanks!
2009-11-01deal w/ conditional glib2 support. Fixes build of security/pakemon andtnn1-1/+12
security/dsniff.
2009-10-31Update to 1.7.1:wiz3-8/+30
2009-06-19 Bob Halley <halley@dnspython.org> * (Version 1.7.1 released) 2009-06-19 Bob Halley <halley@dnspython.org> * DLV.py was omitted from the kit * Negative prerequisites were not handled correctly in _get_section(). 2009-06-19 Bob Halley <halley@dnspython.org> * (Version 1.7.0 released) 2009-06-19 Bob Halley <halley@dnspython.org> * On Windows, the resolver set the domain incorrectly. Thanks to Brandon Carpenter for reporting this bug. * Added a to_digestable() method to rdata classes; it returns the digestable form (i.e. DNSSEC canonical form) of the rdata. For most rdata types this is the same uncompressed wire form. For certain older DNS RR types, however, domain names in the rdata are downcased. * Added support for the HIP RR type. 2009-06-18 Bob Halley <halley@dnspython.org> * Added support for the DLV RR type. * Added various DNSSEC related constants (e.g. algorithm identifiers, flag values). * dns/tsig.py: Added support for BADTRUNC result code. * dns/query.py (udp): When checking that addresses are the same, use the binary form of the address in the comparison. This ensures that we don't treat addresses as different if they have equivalent but differing textual representations. E.g. "1:00::1" and "1::1" represent the same address but are not textually equal. Thanks to Kim Davies for reporting this bug. * The resolver's query() method now has an optional 'source' parameter, allowing the source IP address to be specified. Thanks to Alexander Lind for suggesting the change and sending a patch. * Added NSEC3 and NSEC3PARAM support. 2009-06-17 Bob Halley <halley@dnspython.org> * Fixed NSEC.to_text(), which was only printing the last window. Thanks to Brian Wellington for finding the problem and fixing it. 2009-03-30 Bob Halley <halley@dnspython.org> * dns/query.py (xfr): Allow UDP IXFRs. Use "one_rr_per_rrset" mode when doing IXFR. 2009-03-30 Bob Halley <halley@dnspython.org> * Add "one_rr_per_rrset" mode switch to methods which parse messages from wire format (e.g. dns.message.from_wire(), dns.query.udp(), dns.query.tcp()). If set, each RR read is placed in its own RRset (instead of being coalesced). 2009-03-30 Bob Halley <halley@dnspython.org> * Added EDNS option support. 2008-10-16 Bob Halley <halley@dnspython.org> * dns/rdtypes/ANY/DS.py: The from_text() parser for DS RRs did not allow multiple Base64 chunks. Thanks to Rakesh Banka for finding this bug and submitting a patch. 2008-10-08 Bob Halley <halley@dnspython.org> * Add entropy module. * When validating TSIGs, we need to use the absolute name. 2008-06-03 Bob Halley <halley@dnspython.org> * dns/message.py (Message.set_rcode): The mask used preserved the extended rcode, instead of everything else in ednsflags. * dns/message.py (Message.use_edns): ednsflags was not kept coherent with the specified edns version. 2008-02-06 Bob Halley <halley@dnspython.org> * dns/ipv6.py (inet_aton): We could raise an exception other than dns.exception.SyntaxError in some cases. * dns/tsig.py: Raise an exception when the peer has set a non-zero TSIG error.
2009-10-31Update to 3.0.49:wiz2-6/+7
--- 3.0.49 2009/10/01 Make a number of functions defined in xmlquery.c static. These have never been declared in a public header file (yaz/xmlquery.h) and was made public by mistake. Improve speed of character conversions (iconv utilities). This makes conversions from MARC-8 faster. ZOOM_record_get returns 0 pointer if a MARC record can not be decoded - unless type desired is "raw". This will prevent type "xml" from returning ISO2709 .. Which obviously can not be XML parsed. Fix memory leak in ZOOM that would occur if option apdulog was used on a re-used connection. Frontend server logs HTTP requests. Frontend server now sends Z39.50 close when it times out (sesssion has been idle for too long). Versions 2.0.30 and earlier also sent close. But due to a mistake this was disabled in all versions after that, i.e. the server would just close the socket immediately. yaz-client emits a better message when receiving an unrecognised userInformationField. Skip zero-length subfields when decoding ISO2709. This rare case happens if a record has two FS characters in a sequence. Without this patch there would be a reference beyond char array in using_code_len fragments in marcdisp.c. Fix yaz-marcdump error that would occur if option -n was used (bug #3028).
2009-10-31Update to 1.12. Add default-on idn option (see fourth entry in ChangeLogwiz5-77/+22
below). ** Mailing list MOVED to bug-wget@gnu.org ** SECURITY FIX: It had been possible to trick Wget into accepting SSL certificates that don't match the host name, through the trick of embedding NUL characters into the certs' common name. Fixed by Joao Ferreira <joao@joaoff.com>. ** Added support for CSS. This includes: - Parsing links from CSS files, and from CSS content found in HTML style tags and attributes. - Supporting conversion of links found within CSS content, when --convert-links is specified. - Ensuring that CSS files end in the ".css" filename extension, when --convert-links is specified. CSS support in Wget is thanks to Ted Mielczarek <ted.mielczarek@gmail.com>. ** Added support for Internationalized Resource Identifiers (IRIs, RFC 3987). When support is enabled (requires libidn and libiconv), links with non-ASCII bytes are translated from their source encoding to UTF-8 before percent-encoding. IRI support was added by Saint Xavier <wget@sxav.eu>, as his project for the Google Summer of Code. ** Wget now provides more sensible exit status codes when downloads don't proceed as expected (see the manual). ** --default-page option (and associated wgetrc command) added to support alternative default names for index.html. ** --ask-password option (and associated wgetrc command) added to support password prompts at the console. ** The --input-file option now also handles retrieving links from an external file. ** The output generated by the --version option now includes information on how it was built, and the set of configure-time options that were selected. ** --html-extension has been renamed to --adjust-extension, to reflect the fact that it now also applies to CSS content. --html-extension is still acceptable, but is now deprecated. ** An "ascii" specifier is now accepted by --restrict-file-names, which forces the percent-encoding of all non-ASCII bytes ** Several previously existing, but undocumented .wgetrc options are now documented: save_headers, spider, and user_agent, auth_no_challenge, and keep_session_cookies. Also added documentation for the "lowercase" and "uppercase" values for --restrict-file-names, which had been present since Wget 1.11.
2009-10-31Update to 3.0.1:wiz4-11/+9
2009/10/23: version 3.0.1 = tag release-3-0-1 6961: BT: Fix torrent parsing when announce-list is empty 2009/10/22 6959: DC: Fix invalid XML (lucasn) 6804: EDK: Log incoming chat messages with ip:port info (Dennis Nezic) 6772: New option max_result_name_len, shortens strings in HTML/Telnet search results 6958: EDK: Fix server connects on Solaris due to missing SO_KEEPALIVE 6957: Configure: Make Ocaml 3.11.1 the default compiler 6956; BT: Fix download of torrent files with no 'announce' field (Hose Bag) 2009/02/28 6759: HTML: Properly sort column hits in Options, IP blocking
2009-10-30Add cntlm.jym1-1/+2
2009-10-30Initial import of cntlm 0.35.1 into the NetBSD package system.jym5-0/+120
Cntlm is an NTLM/NTLMv2 authenticating HTTP proxy. It takes the address of your proxy or proxies (host1..N and port1..N) and opens a listening socket, forwarding each request to the parent proxy (moving in a circular list if the active parent stops working). Along the way, a connection to the parent is created anew and authenticated or, if available, previously cached connection is reused to achieve higher efficiency and faster responses. When the chain is set up, cntlm should be used as a proxy in your applications. Cntlm also integrates transparent TCP/IP port forwarding (tunneling) through the parent (incl. authentication). It can be used against most ISA servers, and helps to provide ease of integration for programs not supporting NTLM authentication directly, via cntlm's builtin SOCKS5 proxy.
2009-10-30Add a pam option for the PAM pluginmanu3-5/+25
2009-10-29more PKGREV bumps for removal of esound dependency from libgnomedrochner1-1/+2
2009-10-29Update to the latest version in order to fix build breakage.tnn3-10/+9
libtrace 3.0.6 (2008-11-27) * Fixed compilation errors caused by missing #includes (r1382) * Added trace_get_payload_from_pppoe() to external API (r1383) * autoconf now correctly detects libgdc properly for tracertstats (r1384) * Fixed some warnings on recent versions of gcc (r1385)
2009-10-29Update "libtorrent" and "rtorrent" package to version 0.12.5/0.8.5:tron5-26/+12
- Add support for any number of custom download values identified by string keys. d.set_custom=key,value d.get_custom=key (returns "" if not set) d.get_custom_throw=key (returns error if not set) - With this patch, rtorrent will detect and complain about .torrent files with broken bencode representation (e.g. where the order of dictionary keys is not lexicographic). - Choose a different poll type using the RTORRENT_POLL env. variable (if it's implemented), probably only useful as RTORRENT_POLL=select. - Add the commands execute_capture and execute_capture_nothrow that work like their other counterparts but return the OUTPUT (stdout) of the given command. - Fixes the code that detects which peer was sending bad data. Peers are then automatically banned after sending three bad chunks. - Stops rtorrent from always creating and resizing ALL files, even those set to "off". Files will still be created, but with a size of zero, until a part of them is getting downloaded. This helps with filesystems that don't support sparse files (such as FAT, HFS+, and others). - Fix inefficient piece distribution due to linear chunk request strategy by randomizing position every few (on average 32) chunks, see ticket #190. - Enable custom throttles, both per-download or per-IP. See http://libtorrent.rakshasa.no/ticket/20 for info and instructions. - Fix crashes/errors due to rtorrent attempting to pass non-utf-8 strings to xmlrpc. - Added support for using posix_fallocate on newly resized files. - Include locally available chunks in the "chunks seen" statistics for completed/distributed copies. Patch by Josef Drexler. - Added 'd.get_bitfield' command for retrieving the bitfield in hex format. Patch by Thomas Rosner. - Fixed include headers for gcc-4.4.0. Patch by 'kloeri'.
2009-10-28Update "wireshark" package to version 1.2.3. Changes since version 1.2.2:tron2-6/+6
- The following vulnerabilities have been fixed. See the security advisory for details and a workaround. o The Paltalk dissector could crash on alignment-sensitive processors. (Bug 3689) Versions affected: 1.2.0 to 1.2.2 o The DCERPC/NT dissector could crash. Versions affected: 0.10.10 to 1.2.2 o The SMB dissector could crash. Versions affected: 1.2.0 to 1.2.2 - The following bugs have been fixed: o Wireshark memory leak with each file open and/or display filter change. (Bug 2375) o DHCP Dissector displays negative lease time. (Bug 2733) o Invalid advertised window line on tcptrace style graph. (Bug 3417) o SMB get_dfs_referral referral entry is not dissected correctly. (Bug 3542) o Error dissecting eMule sourceOBFU message. (Bug 3848) o Typos in Diameter XML files. (Bug 3878) o RSL dissector for MS Power IE is broken. (Bug 4017) o Manifest problem in 1.2.2 Win64 build. (Bug 4024) o FIP dissector throws assertion. (Bug 4046) o TCAP problem with indefinite length 'components' SEQ OF. (Bug 4053) o GSM MAP: an-APDU not decoded. (Bug 4095) o Add "Drag and Drop entries..." message on Columns preferences page. (Bug 4099) o Editcap -t and -w option parses fractional digits incorrectly. (Bug 4162) - Updated Protocol Support DCERPC NT, DHCP, Diameter, E.212, eDonkey, FIP, IPsec, MGCP, NCP, Paltalk, RADIUS, RSL, SBus, SMB, SNMP, SSL, TCP, Teamspeak2, WPS
2009-10-27update to 1.3.10drochner3-13/+14
changes: -minor fixes -translation updates pkgsrc note: build against newer gnutls was fixed, don't need the libgnutls-config hack anymore
2009-10-26update to 2.28.1drochner3-12/+127
This switches to the gnome-2.28 release branch.
2009-10-26update to 0.3.10drochner5-35/+35
changes: -bugfixes -Support SASL authentication extension -API and UI improvements -translation updates
2009-10-26Update msdl to 1.2.6.obache2-6/+6
Version 1.2.6. -- msdl * 12th release * -o chain enabled, you can do $ msdl -o 1.foo -o 2.foo -o 3.foo http://bar/file1 http://bar/file2 http://bar/file3 * --stream-timeout option for quit streaming after some time. $ msdl --stream-timeout 3m30s rtsp://foo.com/bar.wmv to download the first 3 and a half minutes. This is helpful for downloading the real-time streaming, which ignores RTSP Range parameters.
2009-10-25dhcpcd-5.1.3 has been imported with the following changes:roy2-6/+6
* waitip is enabled when running on a single interface. * Classless Static Routes are now enabled by default in dhcpcd.conf instead of being always being requested.
2009-10-22reset PKGREVISION for base pkg updatedrochner2-5/+2
2009-10-22Not MAKE_JOBS_SAFE.joerg1-1/+3
2009-10-21+libgdatadrochner1-1/+2
2009-10-21import libgdata-0.5.0, a Google Data client library, fromdrochner5-0/+236
Kamel Derouiche per pkgsrc-wip
2009-10-21update to 2.28.1drochner3-21/+21
changes: -libsoup will now attempt to make multiple connections to a server at once when there are multiple messages queued to that server -bugfixes
2009-10-20Update to 2.2.7:wiz2-6/+6
Version 2.2.7 (September 29, 2009) User-visible changes: * Fix: dailymotion id parsing * Youtube: # Accept -f fmt34 # fmt34 is now treated as yet another (new?) format # Rewrite youtube section of the FORMATS in the manual * Fix: --format=best not working with youtube (closes issue #39) # Thanks to Peter Baranyi for the fix Known issues: * redtube: broken (verify -> http/404) Version 2.2.6 (September 14, 2009) User-visible changes: * Fix: liveleak: "error: Unsupported protocol (http/1)" (closes #36) * Fix: vimeo: title parsing (Thanks to Peter Baranyi for the fix, closes #37) - Fixes title issues with accented chars * Fix: break: http/403 (Thanks to Werner Elsler for the fix, closes #38)
2009-10-19Update to unbound-1.3.4:joerg2-6/+6
- Fixed bug where NSEC3 signature was not checked. This meant that a DS could be spoofed away by a carefully crafted packet. A downgrade attack on existing secure delegations. - updated iana port list.