mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 18:17:52 -05:00
77b88171d6
fixed: #1265
13 lines
204 B
Go
13 lines
204 B
Go
package http
|
|
|
|
import (
|
|
"bufio"
|
|
"net/http"
|
|
|
|
// required to use go:linkname
|
|
_ "unsafe"
|
|
)
|
|
|
|
//go:linkname readRequest net/http.readRequest
|
|
func readRequest(b *bufio.Reader) (req *http.Request, err error)
|