Add http.parseBasicAuth func stub

This commit is contained in:
世界 2023-10-21 12:00:00 +08:00
parent 27518fdf12
commit 8002db54c0
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -12,3 +12,6 @@ func ReadRequest(b *bufio.Reader) (req *http.Request, err error)
//go:linkname URLSetPath net/url.(*URL).setPath
func URLSetPath(u *url.URL, p string) error
//go:linkname ParseBasicAuth net/http.parseBasicAuth
func ParseBasicAuth(auth string) (username, password string, ok bool)