Created
October 31, 2017 21:46
-
-
Save chianingwang/e7d80515158af17f1d1ef00decfb0506 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tcp | |
import ( | |
"io" | |
"log" | |
"net" | |
"os" | |
) | |
// Progress indicates transfer status | |
type Progress struct { | |
bytes uint64 | |
} | |
// TransferStreams launches two read-write goroutines and waits for signal from them | |
func TransferStreams(con net.Conn) { | |
c := make(chan Progress) | |
// Read from Reader and write to Writer until EOF | |
copy := func(r io.ReadCloser, w io.WriteCloser) { | |
defer func() { | |
r.Close() | |
w.Close() | |
}() | |
n, err := io.Copy(w, r) | |
if err != nil { | |
log.Printf("[%s]: ERROR: %s\n", con.RemoteAddr(), err) | |
} | |
c <- Progress{bytes: uint64(n)} | |
} | |
go copy(con, os.Stdout) | |
go copy(os.Stdin, con) | |
p := <-c | |
log.Printf("[%s]: Connection has been closed by remote peer, %d bytes has been received\n", con.RemoteAddr(), p.bytes) | |
p = <-c | |
log.Printf("[%s]: Local peer has been stopped, %d bytes has been sent\n", con.RemoteAddr(), p.bytes) | |
} | |
// StartServer starts TCP listener | |
func StartServer(proto string, port string) { | |
ln, err := net.Listen(proto, port) | |
if err != nil { | |
log.Fatalln(err) | |
} | |
log.Println("Listening on", proto+port) | |
con, err := ln.Accept() | |
if err != nil { | |
log.Fatalln(err) | |
} | |
log.Printf("[%s]: Connection has been opened\n", con.RemoteAddr()) | |
TransferStreams(con) | |
} | |
// StartClient starts TCP connector | |
func StartClient(proto string, host string, port string) { | |
con, err := net.Dial(proto, host+port) | |
if err != nil { | |
log.Fatalln(err) | |
} | |
log.Println("Connected to", host+port) | |
TransferStreams(con) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment