mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 19:31:06 +01:00
65 lines
1.1 KiB
Go
65 lines
1.1 KiB
Go
package ws
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
"time"
|
|
|
|
"nhooyr.io/websocket"
|
|
)
|
|
|
|
type Conn struct {
|
|
ctx context.Context
|
|
*websocket.Conn
|
|
}
|
|
|
|
func NewConn(wsConn *websocket.Conn) net.Conn {
|
|
return &Conn{
|
|
ctx: context.Background(),
|
|
Conn: wsConn,
|
|
}
|
|
}
|
|
|
|
func (c *Conn) Read(b []byte) (n int, err error) {
|
|
t, ioReader, err := c.Conn.Reader(c.ctx)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
if t != websocket.MessageBinary {
|
|
return 0, fmt.Errorf("unexpected message type")
|
|
}
|
|
|
|
return ioReader.Read(b)
|
|
}
|
|
|
|
func (c *Conn) Write(b []byte) (n int, err error) {
|
|
err = c.Conn.Write(c.ctx, websocket.MessageBinary, b)
|
|
return len(b), err
|
|
}
|
|
|
|
func (c *Conn) RemoteAddr() net.Addr {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (c *Conn) LocalAddr() net.Addr {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (c *Conn) SetReadDeadline(t time.Time) error {
|
|
return fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (c *Conn) SetWriteDeadline(t time.Time) error {
|
|
return fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (c *Conn) SetDeadline(t time.Time) error {
|
|
return fmt.Errorf("not implemented")
|
|
}
|
|
|
|
func (c *Conn) Close() error {
|
|
return c.Conn.CloseNow()
|
|
}
|