mirror of https://github.com/gorilla/websocket.git
Merge pull request #53 from gaku/master
Fixed broken HTML for autobahn test server.
This commit is contained in:
commit
1f87405cd9
|
@ -147,7 +147,7 @@ func serveHome(w http.ResponseWriter, r *http.Request) {
|
|||
return
|
||||
}
|
||||
w.Header().Set("Content-Type", "text/html; charset=utf-8")
|
||||
io.WriteString(w, "<html><body>Echo Server</body></html")
|
||||
io.WriteString(w, "<html><body>Echo Server</body></html>")
|
||||
}
|
||||
|
||||
var addr = flag.String("addr", ":9000", "http service address")
|
||||
|
|
Loading…
Reference in New Issue