Make realityClientConnWrapper replaceable

This commit is contained in:
世界
2025-08-20 16:26:12 +08:00
parent ed5fc07493
commit 746d07de91

View File

@@ -307,3 +307,11 @@ func (c *realityClientConnWrapper) Upstream() any {
func (c *realityClientConnWrapper) CloseWrite() error {
return c.Close()
}
func (c *realityClientConnWrapper) ReaderReplaceable() bool {
return true
}
func (c *realityClientConnWrapper) WriterReplaceable() bool {
return true
}