udpnat2: Set upstream to writer

This commit is contained in:
世界 2024-11-08 10:22:04 +08:00
parent 6e1285b5d8
commit 8fe04d1369
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -104,3 +104,7 @@ func (c *Conn) SetReadDeadline(t time.Time) error {
func (c *Conn) SetWriteDeadline(t time.Time) error {
return os.ErrInvalid
}
func (c *Conn) Upstream() any {
return c.writer
}