mirror of
https://github.com/netbirdio/netbird.git
synced 2025-06-30 22:50:22 +02:00
Sonar fix
This commit is contained in:
@ -74,15 +74,15 @@ func (c *Conn) RemoteAddr() net.Addr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) SetReadDeadline(t time.Time) error {
|
func (c *Conn) SetReadDeadline(t time.Time) error {
|
||||||
return fmt.Errorf("not implemented")
|
return fmt.Errorf("SetReadDeadline is not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) SetWriteDeadline(t time.Time) error {
|
func (c *Conn) SetWriteDeadline(t time.Time) error {
|
||||||
return fmt.Errorf("not implemented")
|
return fmt.Errorf("SetWriteDeadline is not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) SetDeadline(t time.Time) error {
|
func (c *Conn) SetDeadline(t time.Time) error {
|
||||||
return fmt.Errorf("not implemented")
|
return fmt.Errorf("SetDeadline is not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) Close() error {
|
func (c *Conn) Close() error {
|
||||||
|
Reference in New Issue
Block a user