mirror of https://github.com/ehang-io/nps
fix read request
parent
e2d249a576
commit
b43bcb1c96
|
@ -43,6 +43,9 @@ func (s *Conn) readRequest(buf []byte) (n int, err error) {
|
|||
return
|
||||
}
|
||||
n += rd
|
||||
if n < 4 {
|
||||
continue
|
||||
}
|
||||
if string(buf[n-4:n]) == "\r\n\r\n" {
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue