请求的scheme
()
| 1458 | |
| 1459 | // 请求的scheme |
| 1460 | func (this *HTTPRequest) requestScheme() string { |
| 1461 | if this.IsHTTPS { |
| 1462 | return "https" |
| 1463 | } |
| 1464 | return "http" |
| 1465 | } |
| 1466 | |
| 1467 | // 请求的服务器地址中的端口 |
| 1468 | func (this *HTTPRequest) requestServerPort() int { |
no outgoing calls
no test coverage detected