Up to [cvs.netbsd.org] / pkgsrc / devel / silc-toolkit
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.6 / (download) - annotate - [select for diffs], Mon Aug 30 11:17:16 2010 UTC (20 months, 3 weeks ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4,
pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
HEAD
Changes since 1.5: +1519 -1066
lines
Diff to previous 1.5 (colored)
Changes 1.1.10 (toolkit): * More string format fixes in silcd and client libary * configure: changed AC_PROG_LIBTOOL order to fix disabling shared libs * configure: check threads support in OpenBSD * Fixed string format vulnerability in client entry handling * Reported and patch provided by William Cummings * silcd: Fixed IDENTIFY command reply handling for channels Changes 1.1.18 (server): * silcd: Added heartbeat support * Added support for sending SILC_PACKET_HEARTBEAT packets to connection, to make sure they keep alive and to detect if they have died * Set SO_KEEPALIVE for all accept()ed sockets * silcd: Fixed SIGUSR1 signal handling * Fixed the SIGUSR1 signal handling which can be used to dump the server internals to /tmp. * Changed also End of Stream handling to handle NULL idata pointer instead of ignoring the EOS in case it is NULL. * Changed also the DETACH timeout handling to use the packet stream directly instead of looking up client in the callback * More string format fixes in silcd and client libary
Revision 1.5 / (download) - annotate - [select for diffs], Sun Jun 14 17:49:14 2009 UTC (2 years, 11 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base,
pkgsrc-2010Q2,
pkgsrc-2010Q1-base,
pkgsrc-2010Q1,
pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
pkgsrc-2009Q3-base,
pkgsrc-2009Q3,
pkgsrc-2009Q2-base,
pkgsrc-2009Q2
Changes since 1.4: +1 -6
lines
Diff to previous 1.4 (colored)
Remove @dirrm entries from PLISTs
Revision 1.4 / (download) - annotate - [select for diffs], Sat Sep 17 03:39:41 2005 UTC (6 years, 8 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4,
pkgsrc-2008Q3-base,
pkgsrc-2008Q3,
pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
pkgsrc-2008Q1-base,
pkgsrc-2008Q1,
pkgsrc-2007Q4-base,
pkgsrc-2007Q4,
pkgsrc-2007Q3-base,
pkgsrc-2007Q3,
pkgsrc-2007Q2-base,
pkgsrc-2007Q2,
pkgsrc-2007Q1-base,
pkgsrc-2007Q1,
pkgsrc-2006Q4-base,
pkgsrc-2006Q4,
pkgsrc-2006Q3-base,
pkgsrc-2006Q3,
pkgsrc-2006Q2-base,
pkgsrc-2006Q2,
pkgsrc-2006Q1-base,
pkgsrc-2006Q1,
pkgsrc-2005Q4-base,
pkgsrc-2005Q4,
pkgsrc-2005Q3-base,
pkgsrc-2005Q3,
cwrapper,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.3: +1038 -1036
lines
Diff to previous 1.3 (colored)
Add some missing *.pc files to the PLIST. While here, also move the
HTML documentation into ${PREFIX}/share/doc as part of the general
campaign to get rid of ${LOCALBASE}/share/doc/html. Bump the PKGREVISION
to 1.
Revision 1.3 / (download) - annotate - [select for diffs], Fri Apr 8 15:15:17 2005 UTC (7 years, 1 month ago) by salo
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base,
pkgsrc-2005Q2
Changes since 1.2: +23 -9
lines
Diff to previous 1.2 (colored)
Update to version 0.9.13 Changes: - convert to options.mk 0.9.13: ======= After a long break the SILC Toolkit 0.9.13 is out. This version finalizes the SILC protocol version 1.2 development by including the few last features that was missing from previous version. One of the major features is the support for UTF-8 encoded nicknames, channel names, user names and host names. The SILC Toolkit 0.9.13 API is compatible with the previous 0.9.12 version, however, several new functions has been added, and reading the following summary of changes is recommended: - Added UTF-8 encoded nicknames, channel names, server names, host names, usernames, crypto property names and algorithm names. All strings library sends to application are always UTF-8 encoded. All strings application sends to library must be UTF-8 encoded. - Added SILC Stringprep API (RFC 3454) into silcstringprep.h. It can be used to prepare strings into the correct format. The format is specified by the SILC protocol, and those formats are supported by this API. The API can also be used to do other UTF-8 string preparation, such as case folding. See the API for different features supported by the API. - Added silc_identifier_check and silc_identifier_verify routines to help application easily format and verify the new UTF-8 encoded nicknames, channel names and other identifier strings. Ref: http://silcnet.org/docs/toolkit/silcstrutil-silc_identifier_check.html http://silcnet.org/docs/toolkit/silcstrutil-silc_identifier_verify.html - Added SILC_STRING_LOCALE that now deprecates SILC_STRING_LANGUAGE. The old type is supported but may be removed in later versions. Ref: http://silcnet.org/docs/toolkit/silcstrutil-SilcStringEncoding.html - Added new string encoding/decoding types: SILC_STRING_LOCALE, SILC_STRING_UTF8, SILC_STRING_PRINTABLE, SILC_STRING_VISIBLE, SILC_STRING_TELETEX, SILC_STRING_NUMERICAL, SILC_STRING_LDAP_DN and SILC_STRING_UTF8_ESCAPE. These types can currently be used with the SILC UTF-8 API. Ref: http://silcnet.org/docs/toolkit/silcstrutil-SilcStringEncoding.html - Splitted UTF-8 string routines from silcstrutil.h into own file silcutf8.h. - Added silc_utf8_strcasecmp and silc_utf8_strncasecmp to do caseless UTF-8 string comparison. Ref: http://silcnet.org/docs/toolkit/silcutf8.html - Added dont_register_crypto_library into SilcClientParams. If set to TRUE the Client Library will not register/unregister cyprto library, and application is expected to do it. By default this is set to FALSE. Ref: http://silcnet.org/docs/toolkit/silcclient-SilcClientParams.html - All created log files by SILC Log API are now with 0600 mode. Ref: http://silcnet.org/docs/toolkit/silclog.html - The bool type on Mac OS X is now _Bool. Ref: http://silcnet.org/docs/toolkit/silctypes-bool.html - The silc_net_create_connection[_async] now revert to IPv4 address if IPv6 sockets are not supported. - Added __SILC_XXX defines into silcincludes.h that third-party applications can check to determine how a binary version of the SILC Toolkit has been compiled. The following defines may be set: __SILC_HAVE_PTHREAD Compiled with threads support __SILC_HAVE_SIM Compiled with SIM support __SILC_ENABLE_DEBUG Compiled with debug enabled A third-party application can check these defines in configure.ac or in compile time to determine what libraries should be linked against the application. - Install pkg-config .pc files for the SILC Core library and SILC Client library. silc.pc and silcclient.pc will be installed. - Several other minor bugfixes were made.
Revision 1.2 / (download) - annotate - [select for diffs], Wed Sep 22 08:09:29 2004 UTC (7 years, 8 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base,
pkgsrc-2005Q1,
pkgsrc-2004Q4-base,
pkgsrc-2004Q4
Changes since 1.1: +1 -9
lines
Diff to previous 1.1 (colored)
Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST. All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun Jun 6 12:23:23 2004 UTC (7 years, 11 months ago) by salo
Branch: TNF
CVS Tags: pkgsrc-base,
pkgsrc-2004Q3-base,
pkgsrc-2004Q3,
pkgsrc-2004Q2-base,
pkgsrc-2004Q2
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Initial import of silc-toolkit-0.9.12: Secure Internet Live Conferencing (SILC) protocol Toolkit. SILC (Secure Internet Live Conferencing) is a protocol which provides secure conferencing services in the Internet over insecure channel. SILC superficially resembles IRC, although they are very different internally. SILC is much more than just about `encrypting the traffic'. That is easy enough to do with IRC and SSL hybrids, but even then the entire network cannot be secured, only part of it. SILC provides security services, such as sending private messages entirely secure; noone can see the message except you and the real receiver of the message. SILC also provides same functionality for channels; noone except those clients joined to the channel may see the messages destined to the channel. Communication between client and server is also secured with session keys and all commands, authentication data (such as passwords etc.) and other traffic is entirely secured. The entire network, and all parts of it, is secured. SILC has secure key exchange protocol that is used to create the session keys for each connection. SILC also provides strong authentication based on either passwords or public key authentication. All authentication data is always encrypted in the SILC network. Each connection has their own session keys, all channels have channel specific keys, and all private messages can be secured with private message specific keys.
Revision 1.1 / (download) - annotate - [select for diffs], Sun Jun 6 12:23:23 2004 UTC (7 years, 11 months ago) by salo
Branch: MAIN
Initial revision