-
Notifications
You must be signed in to change notification settings - Fork 4
/
01B_simple_client_headers.go
48 lines (44 loc) · 1.25 KB
/
01B_simple_client_headers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Jedenáctá část
// Vývoj síťových aplikací v programovacím jazyku Go
// https://www.root.cz/clanky/vyvoj-sitovych-aplikaci-v-programovacim-jazyku-go/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů z jedenácté části:
// https://github.com/tisnik/go-root/blob/master/article_11/README.md
//
// Demonstrační příklad číslo 1B:
// Upravený klient, který vytiskne místní i vzdálenou adresu
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_11/01B_simple_client_headers.html
package main
import (
"fmt"
"net"
)
func main() {
conn, err := net.Dial("tcp", "localhost:1234")
if err != nil {
println("Connection refused!")
} else {
fmt.Printf("Connection established\n")
fmt.Printf("Remote Address: %s \n", conn.RemoteAddr().String())
fmt.Printf("Local Address: %s \n", conn.LocalAddr().String())
var b [1]byte
n, err := conn.Read(b[:])
if err != nil {
println("No response!")
} else {
if n == 1 {
fmt.Printf("Received %d byte: %v\n", n, b)
} else {
fmt.Printf("Received %d bytes: %v\n", n, b)
}
}
}
}