You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package httpupgrade |
|
|
|
import "net" |
|
|
|
type connection struct { |
|
net.Conn |
|
remoteAddr net.Addr |
|
} |
|
|
|
func newConnection(conn net.Conn, remoteAddr net.Addr) *connection { |
|
return &connection{ |
|
Conn: conn, |
|
remoteAddr: remoteAddr, |
|
} |
|
} |
|
|
|
func (c *connection) RemoteAddr() net.Addr { |
|
return c.remoteAddr |
|
}
|
|
|