Fix std read for server conn

This commit is contained in:
世界 2022-07-29 23:59:19 +08:00
parent ebbaadcae0
commit 91d2780bfc
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 8 additions and 0 deletions

View file

@ -176,6 +176,10 @@ func (c *serverConn) writeResponse(payload []byte) (n int, err error) {
return
}
func (c *serverConn) Read(b []byte) (n int, err error) {
return c.reader.Read(b)
}
func (c *serverConn) Write(p []byte) (n int, err error) {
if c.writer != nil {
return c.writer.Write(p)