Created
January 12, 2011 06:09
-
-
Save paulsmith/775764 to your computer and use it in GitHub Desktop.
A simple echo server testing a few interesting Go language features, goroutines and channels.
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
// $ 6g echo.go && 6l -o echo echo.6 | |
// $ ./echo | |
// | |
// ~ in another terminal ~ | |
// | |
// $ nc localhost 3540 | |
package main | |
import ( | |
"net" | |
"bufio" | |
"strconv" | |
"fmt" | |
) | |
const PORT = 3540 | |
func main() { | |
server, err := net.Listen("tcp", ":" + strconv.Itoa(PORT)) | |
if server == nil { | |
panic("couldn't start listening: " + err.String()) | |
} | |
conns := clientConns(server) | |
for { | |
go handleConn(<-conns) | |
} | |
} | |
func clientConns(listener net.Listener) chan net.Conn { | |
ch := make(chan net.Conn) | |
i := 0 | |
go func() { | |
for { | |
client, err := listener.Accept() | |
if client == nil { | |
fmt.Printf("couldn't accept: " + err.String()) | |
continue | |
} | |
i++ | |
fmt.Printf("%d: %v <-> %v\n", i, client.LocalAddr(), client.RemoteAddr()) | |
ch <- client | |
} | |
}() | |
return ch | |
} | |
func handleConn(client net.Conn) { | |
b := bufio.NewReader(client) | |
for { | |
line, err := b.ReadBytes('\n') | |
if err != nil { // EOF, or worse | |
break | |
} | |
client.Write(line) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@tmjvonboss golangs http implementation uses 1 goroutine per connection