mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-10 11:03:11 +00:00
3554886ce1
* Feat: vformat supports multi-core processing (#996) Co-authored-by: Loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com>
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)
|