aboutsummaryrefslogtreecommitdiff
path: root/server_test.go
AgeCommit message (Expand)AuthorFilesLines
2024-03-28test: remove redundant error check (#1741)Gravatar Oleksandr Redko 1-2/+2
2024-02-21Upgrade golangci-lint to v1.56.2; fix gocritic issues (#1722)Gravatar Oleksandr Redko 1-3/+3
2024-02-10Implement `GetRejectedConnectionsCount` function (#1704)Gravatar mopeneko 1-0/+56
2023-12-13chore: Add missing dots at the end of comments (#1677)Gravatar Oleksandr Redko 1-1/+1
2023-11-24chore: Use 'any' instead of 'interface{}' (#1666)Gravatar Oleksandr Redko 1-2/+2
2023-11-24Enable wastedassign, whitespace linters; fix issues (#1665)Gravatar Oleksandr Redko 1-1/+0
2023-08-30docs: fix typos in comments and testsGravatar Oleksandr Redko 1-3/+3
2023-07-02Auto add 'Vary' header after compression (#1585)Gravatar AutumnSun 1-0/+141
2023-06-13Enable gofumpt linter; format code `gofumpt -w .` (#1576)v1.48.0Gravatar Oleksandr Redko 1-2/+5
2023-05-23Don't run test that times out often in parallelGravatar Erik Dubbelboer 1-2/+0
2023-05-07Fix tests (#1552)Gravatar Erik Dubbelboer 1-9/+10
2023-04-28test: refactor to use WriteString (#1546)v1.47.0Gravatar Oleksandr Redko 1-2/+2
2023-03-06test: fix typos in function, error message, comment (#1512)Gravatar Oleksandr Redko 1-4/+4
2023-03-06test: use Fprintf to simplify writing headers (#1510)Gravatar Oleksandr Redko 1-3/+3
2023-02-11docs: replace links to golang.org with go.dev (#1489)Gravatar Oleksandr Redko 1-3/+3
2023-02-10Rename unexported funcs, vars to match common Go (#1488)Gravatar Oleksandr Redko 1-1/+1
2023-02-09doc,test: correct typos (#1484)Gravatar Oleksandr Redko 1-33/+33
2023-01-06server.go Simplify default Server name logic (#1467)Gravatar Sergey Ponomarev 1-2/+2
2022-12-25feat: support custom formvalue function (#1453)Gravatar kinggo 1-0/+36
2022-11-20feat: add ShutdownWithContext (#1383)v1.42.0Gravatar kinggo 1-0/+52
2022-10-06make RequestCtx's userdata accept keys that are of type: interface{} (#1387)Gravatar pj 1-1/+1
2022-09-15Deprecate Go 1.15 (#1379)Gravatar Aoang 1-27/+24
2022-07-29Improve Client timeout (#1346)Gravatar Erik Dubbelboer 1-4/+5
2022-06-05Response.ContentEncoding(): store as field and avoid using Header.SetCanonica...Gravatar Sergey Ponomarev 1-6/+6
2022-04-01Use %v for errors and %q for strings (#1262)v1.35.0Gravatar Erik Dubbelboer 1-235/+235
2022-03-04Fix windows tests (#1235)Gravatar Erik Dubbelboer 1-4/+8
2022-01-22fix(hijack): reuse RequestCtx (#1201)Gravatar Sergio VS 1-51/+169
2022-01-18fix(hijack): reset userValues after hijack handler execution (#1199)Gravatar Sergio VS 1-0/+31
2022-01-10Make tests less flaky (#1189)v1.32.0Gravatar Erik Dubbelboer 1-1/+1
2021-12-16fix: reset response after reset user values on keep-alive connections (#1176)Gravatar Sergio VS 1-2/+12
2021-12-05Add trailer support (#1165)Gravatar ichx 1-1/+62
2021-11-23fix: reset request after reset user values on keep-alive connections (#1162)Gravatar Sergio VS 1-0/+46
2021-11-13feat: close idle connections when server shutdown (#1155)Gravatar ichx 1-0/+41
2021-11-08uri: isHttps() and isHttp() (#1150)Gravatar Sergey Ponomarev 1-3/+2
2021-10-31Don't run all race tests on windows (#1143)Gravatar Erik Dubbelboer 1-0/+2
2021-08-28Various deadline fixes (#1081)Gravatar Erik Dubbelboer 1-0/+4
2021-08-28Fix various Windows Github Action errors (#1082)Gravatar Erik Dubbelboer 1-282/+53
2021-08-24Increase various test timeoutsGravatar Erik Dubbelboer 1-1/+1
2021-08-18Add Go 1.17 support (#1074)Gravatar Erik Dubbelboer 1-3/+3
2021-08-04Handle perIPConn in RequestCtx.IsTLS() specially (#1064)Gravatar Tianyi Song 1-0/+5
2021-07-01Add ResetUserValues() and test (#1056)Gravatar Sujit Baniya 1-0/+9
2021-06-28Flush buffered responses if we have to wait for the next request (#1050)Gravatar Erik Dubbelboer 1-0/+149
2021-06-18Increase TestServerTLSReadTimeout timeoutGravatar Erik Dubbelboer 1-2/+2
2021-06-18Fix race condition in TestPipelineClientIssue832Gravatar Erik Dubbelboer 1-1/+1
2021-06-18Lower go test timeGravatar Erik Dubbelboer 1-1/+13
2021-06-18fix: set content-length properly when StreanRequestBody was enabled (#1049)Gravatar Meng 1-1/+41
2021-04-23Add option for middleware to set custom remote address (#1009)v1.24.0Gravatar Lauris BH 1-0/+50
2021-02-16Streaming fixes (#970)v1.21.0Gravatar Erik Dubbelboer 1-83/+100
2021-02-07fix gracefilly shutdown bug, issue #958 (#960)v1.20.0Gravatar AlphaBaby 1-2/+66
2021-02-06Add request body streaming. Fixes #622 (#911)Gravatar Kirill Danshin 1-0/+111