Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixes for tls in softwareupdate |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
aec1fd578cb8be9e4ae6fb9655faa0b8 |
User & Date: | admin 2017-04-08 02:02:17 |
Context
2017-06-21
| ||
03:50 | Tweak to regproc Leaf check-in: d41a80c600 user: admin tags: trunk | |
2017-04-08
| ||
02:02 | Fixes for tls in softwareupdate check-in: aec1fd578c user: admin tags: trunk | |
2017-01-18
| ||
02:52 | More tweaks to softwareupdate check-in: a1bcc5e76e user: admin tags: trunk | |
Changes
Changes to softwareupdate/softwareupdate.tcl.
1 2 3 4 5 6 7 8 9 10 | #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 | | | 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 ::http::register https 443 [list ::tls::socket -servername codebykevin.com -request 0 -require 0 -ssl2 0 -ssl3 0 -tls1 1] namespace eval softwareupdate { if {![info exists library]} { variable library [file dirname [info script]] } |
︙ | ︙ |