mirror of https://github.com/XTLS/Xray-core
yuhan6665
5 months ago
5 changed files with 22 additions and 6 deletions
@ -1,3 +1,18 @@
|
||||
package internet |
||||
|
||||
import ( |
||||
"net" |
||||
"strings" |
||||
) |
||||
|
||||
//go:generate go run github.com/xtls/xray-core/common/errors/errorgen
|
||||
|
||||
func IsValidHTTPHost(request string, config string) bool { |
||||
r := strings.ToLower(request) |
||||
c := strings.ToLower(config) |
||||
if strings.Contains(r, ":") { |
||||
h, _, _ := net.SplitHostPort(r) |
||||
return h == c |
||||
} |
||||
return r == c |
||||
} |
||||
|
Loading…
Reference in new issue