Implement dummy RemoteAddr on client conn

This commit is contained in:
Zoltán Papp
2024-07-10 10:12:49 +02:00
parent 1f95467b02
commit e0d086a8a8
3 changed files with 15 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
package ws
type WebsocketAddr struct {
}
func (a WebsocketAddr) Network() string {
return "websocket"
}
func (a WebsocketAddr) String() string {
return "websocket/unknown-addr"
}