Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | * *: Added 2009 to copyright statements. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
b46392e9117191b3b0bcaaf0af44600c |
| User & Date: | sgolovan 2009-02-23 14:48:06.000 |
Context
|
2009-02-27
| ||
| 12:06 | * xmpp/disco.tcl: Include in JID identity all received information and not only category, type and name. check-in: e6c3a8eda0 user: sgolovan tags: trunk | |
|
2009-02-23
| ||
| 14:48 | * *: Added 2009 to copyright statements. check-in: b46392e911 user: sgolovan tags: trunk | |
| 13:50 | * xmpp/disco.tcl, xmpp/pkgIndex.tcl: Added basic Service Discovery support (XEP-0030). check-in: 69dbaf2a07 user: sgolovan tags: trunk | |
Changes
Changes to ChangeLog.
1 2 3 4 5 6 7 8 9 10 11 | 2009-02-23 Sergei Golovan <sgolovan@nes.ru> * xmpp/disco.tcl, xmpp/pkgIndex.tcl: Added basic Service Discovery support (XEP-0030). 2009-02-18 Sergei Golovan <sgolovan@nes.ru> * xmpp/zlib.tcl: Ignore errors from fconfigure -flush input. * xmpp/https.tcl, xmpp/socks4.tcl, xmpp/socks5.tcl: Fixed comments. | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | 2009-02-23 Sergei Golovan <sgolovan@nes.ru> * xmpp/disco.tcl, xmpp/pkgIndex.tcl: Added basic Service Discovery support (XEP-0030). * *: Added 2009 to copyright statements. 2009-02-18 Sergei Golovan <sgolovan@nes.ru> * xmpp/zlib.tcl: Ignore errors from fconfigure -flush input. * xmpp/https.tcl, xmpp/socks4.tcl, xmpp/socks5.tcl: Fixed comments. |
| ︙ | ︙ |
Changes to examples/chessbot.tcl.
1 2 3 4 5 6 7 8 | #!/usr/bin/env tclsh # chessbot.tcl -- # # This file is an example provided with the XMPP library. It implements # a simple XMPP bot which uses GNU Chess engine and Tkabber Chess plugin # protocol to play chess. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/usr/bin/env tclsh # chessbot.tcl -- # # This file is an example provided with the XMPP library. It implements # a simple XMPP bot which uses GNU Chess engine and Tkabber Chess plugin # protocol to play chess. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require xmpp::full |
| ︙ | ︙ |
Changes to examples/echo.tcl.
1 2 3 4 5 6 7 8 9 | #!/usr/bin/env tclsh # echo.tcl -- # # This file is an example provided with the XMPP library. It implements # a simple XMPP server-side component which returns every received packet # to sender. This component authenticates using XEP-0225 (Component # Connections) or XEP-0114 (Jabber Component Protocol). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/usr/bin/env tclsh # echo.tcl -- # # This file is an example provided with the XMPP library. It implements # a simple XMPP server-side component which returns every received packet # to sender. This component authenticates using XEP-0225 (Component # Connections) or XEP-0114 (Jabber Component Protocol). # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require xmpp |
| ︙ | ︙ |
Changes to examples/xsend.tcl.
1 2 3 4 5 6 7 8 | #!/usr/bin/env tclsh # xsend.tcl -- # # This file is an example provided with the XMPP library. It allows to # send messages via XMPP non-interactively. It was initially developed # by Marshall T. Rose and adapted to the XMPP library by Sergei Golovan. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/usr/bin/env tclsh # xsend.tcl -- # # This file is an example provided with the XMPP library. It allows to # send messages via XMPP non-interactively. It was initially developed # by Marshall T. Rose and adapted to the XMPP library by Sergei Golovan. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require mime |
| ︙ | ︙ |
Changes to license.terms.
|
| | | 1 2 3 4 5 6 7 8 | Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: |
| ︙ | ︙ |
Changes to xmpp/auth.tcl.
1 2 3 4 5 | # auth.tcl -- # # This file is part of the XMPP library. It provides support for the # non-SASL authentication layer (XEP-0078). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # auth.tcl -- # # This file is part of the XMPP library. It provides support for the # non-SASL authentication layer (XEP-0078). # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require sha1 |
| ︙ | ︙ |
Changes to xmpp/component.tcl.
1 2 3 4 5 | # component.tcl -- # # This file is part of the XMPP library. It provides support for the # Jabber Component Protocol (XEP-0114). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # component.tcl -- # # This file is part of the XMPP library. It provides support for the # Jabber Component Protocol (XEP-0114). # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require sha1 |
| ︙ | ︙ |
Changes to xmpp/compress.tcl.
1 2 3 4 5 | # compress.tcl -- # # This file is part of the XMPP library. It provides support for # Stream Compression (XEP-0138). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # compress.tcl -- # # This file is part of the XMPP library. It provides support for # Stream Compression (XEP-0138). # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require xmpp::stanzaerror 0.1 |
| ︙ | ︙ |
Changes to xmpp/data.tcl.
1 2 3 4 5 | # data.tcl -- # # This file is a part of the XMPP library. It implements support for # data forms (XEP-0004). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # data.tcl -- # # This file is a part of the XMPP library. It implements support for # data forms (XEP-0004). # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require xmpp::xml |
| ︙ | ︙ |
Changes to xmpp/delay.tcl.
1 2 3 4 5 | # delay.tcl -- # # This file is part of the XMPP library. It implements interface to # Delayed Delivery (XEP-0091 and XEP-0203) # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # delay.tcl -- # # This file is part of the XMPP library. It implements interface to # Delayed Delivery (XEP-0091 and XEP-0203) # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package provide xmpp::delay 0.1 |
| ︙ | ︙ |
Changes to xmpp/dns.tcl.
1 2 3 4 5 6 | # dns.tcl -- # # This file is part of the XMPP library. It provides support for XMPP # Client SRV DNS records (RFC 3920) and DNS TXT Resource Record Format # (XEP-0156). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # dns.tcl -- # # This file is part of the XMPP library. It provides support for XMPP # Client SRV DNS records (RFC 3920) and DNS TXT Resource Record Format # (XEP-0156). # # Copyright (c) 2006-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require dns 1.3 |
| ︙ | ︙ |
Changes to xmpp/https.tcl.
1 2 3 4 5 6 | # https.tcl -- # # Package for using the HTTP CONNECT (it is a common method for # tunnelling HTTPS traffic, so the name is https) method for # connecting TCP sockets. Only client side. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # https.tcl -- # # Package for using the HTTP CONNECT (it is a common method for # tunnelling HTTPS traffic, so the name is https) method for # connecting TCP sockets. Only client side. # # Copyright (c) 2007-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require base64 |
| ︙ | ︙ |
Changes to xmpp/iq.tcl.
1 2 3 4 5 6 | # iq.tcl -- # # This file is part of the XMPP library. It implements the IQ processing # for high level applications. If you want to use low level parsing, use # -packetCommand option for ::xmpp::new. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # iq.tcl -- # # This file is part of the XMPP library. It implements the IQ processing # for high level applications. If you want to use low level parsing, use # -packetCommand option for ::xmpp::new. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package provide xmpp::iq 0.1 |
| ︙ | ︙ |
Changes to xmpp/jid.tcl.
1 2 3 4 5 | # jid.tcl -- # # This file is part of the XMPP library. It implements the routines to # work with JIDs # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # jid.tcl -- # # This file is part of the XMPP library. It implements the routines to # work with JIDs # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package provide xmpp::jid 0.1 |
| ︙ | ︙ |
Changes to xmpp/negotiate.tcl.
1 2 3 4 5 | # negotiate.tcl -- # # This file is a part of the XMPP library. It implements support for # feature negotiation (XEP-0020). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # negotiate.tcl -- # # This file is a part of the XMPP library. It implements support for # feature negotiation (XEP-0020). # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require xmpp |
| ︙ | ︙ |
Changes to xmpp/ntlm.tcl.
1 2 3 4 5 6 | # ntlm.tcl -- # # This file implements NTLM Authentication messages in Tcl. # This module is based on Mozilla NTLM authenticattion module and # documentation from http://davenport.sourceforge.net/ntlm.html # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # ntlm.tcl -- # # This file implements NTLM Authentication messages in Tcl. # This module is based on Mozilla NTLM authenticattion module and # documentation from http://davenport.sourceforge.net/ntlm.html # # Copyright (c) 2004-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require des |
| ︙ | ︙ |
Changes to xmpp/pconnect.tcl.
1 2 3 4 5 6 | # pconnect.tcl --- # # Interface to socks4/5 or https to make usage of 'socket' transparent. # Can also be used as a wrapper for the 'socket' command without any # proxy configured. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# pconnect.tcl ---
#
# Interface to socks4/5 or https to make usage of 'socket' transparent.
# Can also be used as a wrapper for the 'socket' command without any
# proxy configured.
#
# Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru>
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAMER OF ALL WARRANTIES.
#
# $Id$
catch {package require ceptcl}
|
| ︙ | ︙ |
Changes to xmpp/pkgIndex.tcl.
1 2 3 4 5 | # pkgIndex.tcl -- # # This file is part of the XMPP library. It registeres XMPP packages # for Tcl. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # pkgIndex.tcl -- # # This file is part of the XMPP library. It registeres XMPP packages # for Tcl. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package ifneeded ntlm 1.0 [list source [file join $dir ntlm.tcl]] |
| ︙ | ︙ |
Changes to xmpp/poll.tcl.
1 2 3 4 | # poll.tcl -- # # This file is a part of the XMPP library. It implements HTTP-polling. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 | # poll.tcl -- # # This file is a part of the XMPP library. It implements HTTP-polling. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require sha1 |
| ︙ | ︙ |
Changes to xmpp/register.tcl.
1 2 3 4 5 | # register.tcl -- # # This file is a part of the XMPP library. It implements support for # In-Band Registration (XEP-0077). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # register.tcl -- # # This file is a part of the XMPP library. It implements support for # In-Band Registration (XEP-0077). # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require xmpp |
| ︙ | ︙ |
Changes to xmpp/roster.tcl.
1 2 3 4 5 | # roster.tcl -- # # This file is a part of the XMPP library. It implements basic # roster routines (RFC-3291). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # roster.tcl -- # # This file is a part of the XMPP library. It implements basic # roster routines (RFC-3291). # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require xmpp |
| ︙ | ︙ |
Changes to xmpp/sasl.tcl.
1 2 3 4 5 6 | # sasl.tcl -- # # This file is part of the XMPP library. It provides support for the # SASL authentication layer via the tclsasl or tcllib SASL package. # Also, it binds resource and opens XMPP session. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # sasl.tcl -- # # This file is part of the XMPP library. It provides support for the # SASL authentication layer via the tclsasl or tcllib SASL package. # Also, it binds resource and opens XMPP session. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require base64 |
| ︙ | ︙ |
Changes to xmpp/search.tcl.
1 2 3 4 5 | # search.tcl -- # # This file is a part of the XMPP library. It implements support for # Jabber search (XEP-0055). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # search.tcl -- # # This file is a part of the XMPP library. It implements support for # Jabber search (XEP-0055). # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require xmpp |
| ︙ | ︙ |
Changes to xmpp/socks4.tcl.
1 2 3 4 5 6 | # socks4.tcl --- # # Package for using the SOCKS4a method for connecting TCP sockets. # Only client side. # # Copyright (c) 2007 Mats Bengtsson | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # socks4.tcl --- # # Package for using the SOCKS4a method for connecting TCP sockets. # Only client side. # # Copyright (c) 2007 Mats Bengtsson # Copyright (c) 2007-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require pconnect |
| ︙ | ︙ |
Changes to xmpp/socks5.tcl.
1 2 3 4 5 6 7 8 | # socks5.tcl --- # # Package for using the SOCKS5 method for connecting TCP sockets. # Some code plus idee from Kerem 'Waster_' Hadimli. # Made from RFC 1928. # # Copyright (c) 2000 Kerem Hadimli # Copyright (c) 2003-2007 Mats Bengtsson | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # socks5.tcl --- # # Package for using the SOCKS5 method for connecting TCP sockets. # Some code plus idee from Kerem 'Waster_' Hadimli. # Made from RFC 1928. # # Copyright (c) 2000 Kerem Hadimli # Copyright (c) 2003-2007 Mats Bengtsson # Copyright (c) 2007-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require pconnect |
| ︙ | ︙ |
Changes to xmpp/stanzaerror.tcl.
1 2 3 4 5 6 | # stanzaerror.tcl -- # # This file is part of the XMPP library. It provides routines for # parsing and generating XMPP stanza errors. For legacy errors XEP-0086 # rules are used. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # stanzaerror.tcl -- # # This file is part of the XMPP library. It provides routines for # parsing and generating XMPP stanza errors. For legacy errors XEP-0086 # rules are used. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package provide xmpp::stanzaerror 0.1 |
| ︙ | ︙ |
Changes to xmpp/starttls.tcl.
1 2 3 4 5 | # starttls.tcl -- # # This file is part of the XMPP library. It provides support for the # tls network socket security layer. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # starttls.tcl -- # # This file is part of the XMPP library. It provides support for the # tls network socket security layer. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require xmpp::stanzaerror |
| ︙ | ︙ |
Changes to xmpp/streamerror.tcl.
1 2 3 4 5 | # streamerror.tcl -- # # This file is part of the XMPP library. It provides routines for # parsing XMPP stream errors. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # streamerror.tcl -- # # This file is part of the XMPP library. It provides routines for # parsing XMPP stream errors. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package provide xmpp::streamerror 0.1 |
| ︙ | ︙ |
Changes to xmpp/tcp.tcl.
1 2 3 4 5 | # tcp.tcl -- # # This file is part of the XMPP library. It provides support for the # XMPP stream over TCP sockets. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # tcp.tcl -- # # This file is part of the XMPP library. It provides support for the # XMPP stream over TCP sockets. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require pconnect |
| ︙ | ︙ |
Changes to xmpp/tls.tcl.
1 2 3 4 5 | # tls.tcl -- # # This file is part of the XMPP library. It provides support for the # XMPP stream over TLS encrypted TCP sockets. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # tls.tcl -- # # This file is part of the XMPP library. It provides support for the # XMPP stream over TLS encrypted TCP sockets. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require tls 1.4 |
| ︙ | ︙ |
Changes to xmpp/transport.tcl.
1 2 3 4 5 | # transport.tcl -- # # This file is part of the XMPP library. It implements the XMPP # transports infrastructure. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # transport.tcl -- # # This file is part of the XMPP library. It implements the XMPP # transports infrastructure. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require msgcat |
| ︙ | ︙ |
Changes to xmpp/xml.tcl.
1 2 3 4 5 6 | # xml.tcl -- # # This file is part of the XMPP library. It defines procedures which # wrap XML parser. These procedures are called by functions in XMPP # library, and they in turn call the TclXML or tDOM library functions. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # xml.tcl -- # # This file is part of the XMPP library. It defines procedures which # wrap XML parser. These procedures are called by functions in XMPP # library, and they in turn call the TclXML or tDOM library functions. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require msgcat |
| ︙ | ︙ |
Changes to xmpp/xmpp.tcl.
1 2 3 4 5 | # xmpp.tcl -- # # This file is part of the XMPP library. It implements the main library # routines. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # xmpp.tcl -- # # This file is part of the XMPP library. It implements the main library # routines. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require msgcat |
| ︙ | ︙ |
Changes to xmpp/zlib.tcl.
1 2 3 4 5 | # zlib.tcl -- # # This file is part of the XMPP library. It provides support for the # XMPP stream over Zlib compressed TCP sockets. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # zlib.tcl -- # # This file is part of the XMPP library. It provides support for the # XMPP stream over Zlib compressed TCP sockets. # # Copyright (c) 2008-2009 Sergei Golovan <sgolovan@nes.ru> # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAMER OF ALL WARRANTIES. # # $Id$ package require zlib 1.0 |
| ︙ | ︙ |