Commit f311568f authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #7761 from danyalprout/fix-rate-limiting

Support optional whitespace in XFF Header
parents 1755fe25 58eca41c
......@@ -1170,6 +1170,6 @@ func RecordBatchRPCForward(ctx context.Context, backendName string, reqs []*RPCR
}
func stripXFF(xff string) string {
ipList := strings.Split(xff, ", ")
ipList := strings.Split(xff, ",")
return strings.TrimSpace(ipList[0])
}
package proxyd
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestStripXFF(t *testing.T) {
tests := []struct {
in, out string
}{
{"1.2.3, 4.5.6, 7.8.9", "1.2.3"},
{"1.2.3,4.5.6", "1.2.3"},
{" 1.2.3 , 4.5.6 ", "1.2.3"},
}
for _, test := range tests {
actual := stripXFF(test.in)
assert.Equal(t, test.out, actual)
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment