客户端端口
()
| 1367 | |
| 1368 | // 客户端端口 |
| 1369 | func (this *HTTPRequest) requestRemotePort() int { |
| 1370 | _, port, err := net.SplitHostPort(this.RawReq.RemoteAddr) |
| 1371 | if err == nil { |
| 1372 | return types.Int(port) |
| 1373 | } |
| 1374 | return 0 |
| 1375 | } |
| 1376 | |
| 1377 | // 获取的URI中的参数部分 |
| 1378 | func (this *HTTPRequest) requestQueryString() string { |
no outgoing calls
no test coverage detected