This repository was archived by the owner on Mar 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequest_internal.go
88 lines (71 loc) · 1.72 KB
/
request_internal.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// See the LICENSE file for license details.
package go_webserver
import (
"net"
"net/netip"
"github.com/valyala/fasthttp"
)
// -----------------------------------------------------------------------------
const (
reqContextLinkKey = "\xFF\xFF**reqContextLinkKey"
)
// -----------------------------------------------------------------------------
func (req *RequestContext) sendError(statusCode int, msg string) {
if !req.IsHead() {
if len(msg) == 0 {
msg = fasthttp.StatusMessage(statusCode)
}
req.Error(msg, statusCode)
} else {
req.Error("", statusCode)
}
}
func (req *RequestContext) isProxyTrusted() bool {
if req.tp == nil {
return true
}
return req.tp.IsIpTrusted(req.ctx.RemoteIP())
}
func (req *RequestContext) setHandlerParams(h HandlerFunc, middlewares []HandlerFunc) {
req.handler = h
req.middlewares = middlewares
req.middlewaresLen = len(middlewares)
}
// -----------------------------------------------------------------------------
func getFirstIpAddress(header []byte) net.IP {
ofs := 0
l := len(header)
for ofs < l {
// Skip leading spaces
for ofs < l && header[ofs] == ' ' {
ofs += 1
}
// Get address
startOfs := ofs
for ofs < l && header[ofs] != ' ' && header[ofs] != ',' {
ofs += 1
}
endOfs := ofs
// Skip trailing spaces
nonSpaceCharFound := false
for ofs < l && header[ofs] != ',' {
if header[ofs] != ' ' {
nonSpaceCharFound = true
}
ofs += 1
}
// Skip comma if any
if ofs < l {
ofs += 1
}
// Process this address
if !nonSpaceCharFound && endOfs > startOfs {
addr, err := netip.ParseAddr(string(header[startOfs:endOfs]))
if err == nil {
return addr.AsSlice()
}
}
}
// Cannot retrieve first IP address
return nil
}