1 package websocket 2 3 import "net" 4 5 func (nc *netConn) RemoteAddr() net.Addr { 6 return websocketAddr{} 7 } 8 9 func (nc *netConn) LocalAddr() net.Addr { 10 return websocketAddr{} 11 } 12
View as plain text