~ubuntu-branches/ubuntu/hardy/tcltls/hardy

« back to all changes in this revision

Viewing changes to tests/keytest2.tcl

  • Committer: Bazaar Package Importer
  • Author(s): Søren Boll Overgaard
  • Date: 2004-06-16 19:22:30 UTC
  • Revision ID: james.westby@ubuntu.com-20040616192230-tv159811lsnerauf
Tags: upstream-1.5.0
Import upstream version 1.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package require tls
 
2
 
 
3
set s [tls::socket 127.0.0.1 12300]
 
4
puts $s "A line"
 
5
flush $s
 
6
puts [join [tls::status $s] \n]
 
7
exit
 
8