File: tcp.client

package info (click to toggle)
openocd 0.5.0-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 16,716 kB
  • sloc: ansic: 143,239; sh: 15,414; tcl: 5,758; makefile: 922; asm: 535; perl: 20
file content (9 lines) | stat: -rw-r--r-- 151 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
# Example of sending via a connected tcp socket

set s [socket stream 127.0.0.1:20000]

foreach i [range 1 20] {
	$s puts "1 << $i"

	puts [$s gets]
}