Overview
Comment: | * pkgIndex.tcl.in: * configure.in: updated version to 1.4 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1-3-io-rewrite |
Files: | files | file ages | folders |
SHA1: |
1e0de94a93cfa0ab1534854e28f7c09c |
User & Date: | hobbs on 2000-07-17 23:17:38 |
Other Links: | branch diff | manifest | tags |
Context
2000-07-21
| ||
05:32 | * tests/tlsIO.test: corrected various tests to be correct for TLS stacked channels (as opposed to the standard sockets the test suite was adopted from). Key differences are that TLS cannot operate in one process without all channels being non-blocking, or the handshake will block, and handshaking must be forced in some cases. Also, handshakes don't seem to complete unless the client has placed at least one byte for the server to read in the channel. * tests/remote.tcl: corrected the finding of tests certificates * tlsIO.c (TlsCloseProc): removed deleting of timer handler as that is handled by Tls_Clean. * tls.tcl (tls::_accept): corrected the internal _accept to trickle callback errors to the user. * Makefile.in: made the install-binaries target regenerate the pkgIndex.tcl correctly. The test target probably shouldn't screw it up, but this is to be on the safe side. check-in: 977988aed6 user: hobbs tags: tls-1-3-io-rewrite | |
2000-07-17
| ||
23:17 | * pkgIndex.tcl.in: * configure.in: updated version to 1.4 check-in: 1e0de94a93 user: hobbs tags: tls-1-3-io-rewrite | |
2000-07-14
| ||
04:10 | * tests/tlsIO.test: enabled tests 2.10, 7.[1245] (there is no 3), which now pass. Added some comments to other failing tests. check-in: 7b1825af0d user: hobbs tags: tls-1-3-io-rewrite | |
Changes
Modified ChangeLog from [fac07465ee] to [26e006953b].
1 2 3 4 5 6 7 | 2000-07-13 Jeff Hobbs <[email protected]> * tests/tlsIO.test: enabled tests 2.10, 7.[1245] (there is no 3), which now pass. Added some comments to other failing tests. 2000-07-11 Jeff Hobbs <[email protected]> | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 | 2000-07-17 Jeff Hobbs <[email protected]> * pkgIndex.tcl.in: * configure.in: updated version to 1.4 2000-07-13 Jeff Hobbs <[email protected]> * tests/tlsIO.test: enabled tests 2.10, 7.[1245] (there is no 3), which now pass. Added some comments to other failing tests. 2000-07-11 Jeff Hobbs <[email protected]> |
︙ | ︙ |
Modified configure.in from [b7f03645a1] to [f7106cacc4].
︙ | ︙ | |||
30 31 32 33 34 35 36 | # like dots in # library names (Windows). The VERSION variable is # used on the other systems. #-------------------------------------------------------------------- PACKAGE=tls MAJOR_VERSION=1 | | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | # like dots in # library names (Windows). The VERSION variable is # used on the other systems. #-------------------------------------------------------------------- PACKAGE=tls MAJOR_VERSION=1 MINOR_VERSION=4 PATCHLEVEL= VERSION=${MAJOR_VERSION}.${MINOR_VERSION}${PATCHLEVEL} NODOT_VERSION=${MAJOR_VERSION}${MINOR_VERSION} AC_SUBST(PACKAGE) AC_SUBST(VERSION) |
︙ | ︙ |
Modified pkgIndex.tcl.in from [97e308791e] to [a7daa6d089].
1 |
| | > | | < | | 1 2 3 4 5 6 7 8 9 | # pkgIndex.tcl - # # A new manually generated "pkgIndex.tcl" file for tls to # replace the original which didn't include the commands from "tls.tcl". # package ifneeded tls 1.4 "[list load [file join $dir @RELPATH@ @tls_LIB_FILE@] ] ; [list source [file join $dir tls.tcl] ]" |