Last active
April 22, 2016 22:11
-
-
Save lstoll/77d5aa4586939ec4d59609316fe90944 to your computer and use it in GitHub Desktop.
Websockets as a drop in TCP replacement
This file contains 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 wsnet | |
import ( | |
"net" | |
"time" | |
"golang.org/x/net/websocket" | |
) | |
// Dial gives you a net.Conn that talks to a WS destination. | |
// Addr should be like "ws://localhost:8080/" | |
func Dial(addr string, timeout time.Duration) (net.Conn, error) { | |
return websocket.Dial(addr, "", "http://localhost/") | |
} |
This file contains 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 wsnet | |
import ( | |
"net" | |
"net/http" | |
"golang.org/x/net/websocket" | |
) | |
type WSServer struct { | |
listener net.Listener | |
conns chan net.Conn | |
} | |
func Listen(laddr string) (net.Listener, error) { | |
listener, err := net.Listen("tcp", laddr) | |
if err != nil { | |
return nil, err | |
} | |
wss := &WSServer{ | |
listener: listener, | |
conns: make(chan net.Conn), | |
} | |
http.Handle("/", websocket.Handler(wss.wsHandler)) | |
err = http.Serve(listener, nil) | |
if err != nil { | |
listener.Close() | |
return nil, err | |
} | |
return wss, nil | |
} | |
func (w *WSServer) Accept() (net.Conn, error) { | |
return <-w.conns, nil | |
} | |
func (w *WSServer) Close() error { | |
return w.listener.Close() | |
} | |
func (w *WSServer) Addr() net.Addr { | |
// This is still legit enough? Maybe? | |
return w.listener.Addr() | |
} | |
func (w *WSServer) wsHandler(ws *websocket.Conn) { | |
w.conns <- ws | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment