TextSweep

Check-in [6ae661a85d]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Update ssl bits
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 6ae661a85d587b2259c0478733c5c5d330d6bcb3
User & Date: kevin 2017-04-03 10:09:30
Context
2017-04-07
22:31
Hotfix for secure app update check-in: 7db359029c user: kevin tags: trunk
2017-04-03
10:09
Update ssl bits check-in: 6ae661a85d user: kevin tags: trunk
02:59
Upgrade tls for macOS check-in: f8daa2fd1d user: kevin tags: trunk
Changes
Hide Diffs Side-by-Side Diffs Ignore Whitespace Patch

Changes to scriptlibs/softwareupdate/softwareupdate.tcl.

1
2
3
4
5
6
7
8
9
10

11

12
13
14
15
16
17
18
1
2
3
4
5
6
7
8

9
10

11
12
13
14
15
16
17
18








-

+
-
+







#softwareupdate.tcl  routines to manage spoftware updates

#  Copyright (C) 2014  WordTech Communications LLC

#MIT license

package provide softwareupdate 1.5
package require http
package require tls

::tls::init -tls1 true
http::register https 443 [list ::tls::socket -tls1 1]   ;# "-tls1 1" is required since [POODLE]
::http::register https 443 ::tls::socket

namespace eval softwareupdate {

    if {![info exists library]} {
	variable library [file dirname [info script]]
    }