aboutsummaryrefslogtreecommitdiff
path: root/examples/udp.client
blob: 32dbc024ac3f8d56bd738dd976bab760d620e13a (plain)
1
2
3
4
5
6
7
8
9
10
11
# Example of sending from an unconnected socket

set s [socket dgram]

foreach i [range 1 20] {
	# Specify the address and port with sendto
	$s sendto "$i + $i + 10" 127.0.0.1:20000

	# Receive the response - max length of 100
	puts [$s recvfrom 100]
}