Overview
Comment: | Removed obsolete RCS version strings. Added file header info. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1.8 |
Files: | files | file ages | folders |
SHA3-256: |
fbdf0eae0a2cbbe5110b0a934d1fd094 |
User & Date: | bohagan on 2024-10-26 16:38:51 |
Other Links: | branch diff | manifest | tags |
Context
2024-10-26
| ||
17:04 | Updated README.txt file. check-in: 22727e2eee user: bohagan tags: tls-1.8 | |
16:38 | Removed obsolete RCS version strings. Added file header info. check-in: fbdf0eae0a user: bohagan tags: tls-1.8 | |
16:12 | Added manifest.uuid file to clean files check-in: 28f9ada225 user: bohagan tags: tls-1.8 | |
Changes
Modified generic/tls.c
from [87532f6227]
to [99b0260693].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | + + + + + + + - - - - - - - + | /* * TLS Channel - This extension provides a encrypted communication channel * using the TLS or SSL protocols. It can be layered on top of any * bi-directional Tcl_Channel. * * This was initially built (almost) from scratch based upon observation of * OpenSSL 0.9.2B. * * Copyright (C) 1997-1999 Matt Newman <matt@novadigm.com> * some modifications: * Copyright (C) 2000 Ajuba Solutions * Copyright (C) 2002 ActiveState Corporation * Copyright (C) 2004 Starfish Systems * Copyright (C) 2023 Brian O'Hagan * |
︙ |
Modified generic/tls.h
from [5524cb9711]
to [5d17597cda].
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + - - - + + - + | /* |
︙ |
Modified generic/tlsBIO.c
from [8197456eb7]
to [f962f31c62].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | /* |
︙ |
Modified generic/tlsIO.c
from [5434dce8b9]
to [28f229b1c5].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - - - - - - + | /* * Provides IO functions to interface between the BIO buffers and TCL * applications when using stacked channels. * * Copyright (C) 1997-2000 Matt Newman <matt@novadigm.com> * Copyright (C) 2000 Ajuba Solutions * Copyright (C) 2024 Brian O'Hagan * |
︙ |
Modified generic/tlsInt.h
from [683e0380e9]
to [50ff8aa0e5].
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | - + + - - - + - + + | /* |
︙ |
Modified generic/tlsX509.c
from [d88846a73e]
to [6d1eaaa465].
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
︙ |
Modified library/tls.tcl
from [852d83e8d6]
to [c206365201].
|
Modified tests/all.tcl
from [7643c0fdf5]
to [eb707ec865].
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - | # all.tcl -- # # This file contains a top-level script to run all of the Tcl # tests. Execute it by invoking "source all.test" when running tcltest # in this directory. # # Copyright (c) 1998-2000 by Ajuba Solutions. # All rights reserved. # |
︙ |
Modified tests/remote.tcl
from [ef6ea299d6]
to [39da907de3].
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | + - | #!/usr/bin/env tclsh # # This file contains Tcl code to implement a remote server that can be # used during testing of Tcl socket code. This server is used by some # of the tests in socket.test. # # Source this file in the remote server you are using to test Tcl against. # # Copyright (c) 1995-1996 Sun Microsystems, Inc. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # |
︙ |
Modified tests/tlsIO.test
from [2979185eed]
to [fe4b8588ad].
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - | # Commands tested in this file: socket. -*- tcl -*- # # This file contains a collection of tests for one or more of the Tcl # built-in commands. Sourcing this file into Tcl runs the tests and # generates output for errors. No output means no errors were found. # # Copyright (c) 1994-1996 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Ajuba Solutions. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # |
︙ |