mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix fallback packet conn
This commit is contained in:
parent
7f8eaee1b6
commit
a82d82e559
1 changed files with 12 additions and 0 deletions
|
@ -42,3 +42,15 @@ func (c *FallbackPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error)
|
|||
}
|
||||
return
|
||||
}
|
||||
|
||||
func (c *FallbackPacketConn) ReaderReplaceable() bool {
|
||||
return true
|
||||
}
|
||||
|
||||
func (c *FallbackPacketConn) WriterReplaceable() bool {
|
||||
return true
|
||||
}
|
||||
|
||||
func (c *FallbackPacketConn) Upstream() any {
|
||||
return c.PacketConn
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue