-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtcp.go
81 lines (71 loc) · 2.28 KB
/
tcp.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/**
* Filename: tcp.go
* Description: the PortForward tcp layer implement
* Author: knownsec404
* Time: 2020.09.23
*/
package main
import (
"net"
"time"
)
/**********************************************************************
* @Function: ListenTCP(address string, clientc chan Conn, quit chan bool)
* @Description: listen local tcp service, and accept client connection,
* initialize connection and return by channel.
* @Parameter: address string, the local listen address
* @Parameter: clientc chan Conn, new client connection channel
* @Parameter: quit chan bool, the quit signal channel
* @Return: nil
**********************************************************************/
func ListenTCP(address string, clientc chan Conn, quit chan bool) {
addr, err := net.ResolveTCPAddr("tcp", address)
if err != nil {
LogError("tcp listen error, %s", err)
clientc <- nil
return
}
serv, err := net.ListenTCP("tcp", addr)
if err != nil {
LogError("tcp listen error, %s", err)
clientc <- nil
return
}
// the "conn" has been ready, close "serv"
defer serv.Close()
for {
// check quit
select {
case <-quit:
return
default:
}
// set "Accept" timeout, for check "quit" signal
serv.SetDeadline(time.Now().Add(16 * time.Second))
conn, err := serv.Accept()
if err != nil {
if err, ok := err.(net.Error); ok && err.Timeout() {
continue
}
// others error
LogError("tcp listen error, %s", err)
clientc <- nil
break
}
// new client is connected
clientc <- conn
} // end for
}
/**********************************************************************
* @Function: ConnTCP(address string) (Conn, error)
* @Description: dial to remote server, and return tcp connection
* @Parameter: address string, the remote server address that needs to be dialed
* @Return: (Conn, error), the tcp connection and error
**********************************************************************/
func ConnTCP(address string) (Conn, error) {
conn, err := net.DialTimeout("tcp", address, 10 * time.Second)
if err != nil {
return nil, err
}
return conn, nil
}