Age | Commit message (Collapse) | Author |
|
Update Makefile, add go vendor (go 1.14 + php hack)
Update usage of new json package
|
|
|
|
Fix innefectual usage of maps
Update headers (canonical usage)
Add golangci-lint check to github actions and go 1.13
|
|
|
|
Originally, a regular expression was used to split and trim multiple
comma-separated header names from "Trailer" header. This commit replaces
regular expression with strings.Split() to break string into parts and
then trims spaces and tabs from individual header names.
|
|
Neither PHP nor PSR-7 do not natively support HTTP trailers. Golang
provides support and this commit enables trailers emulation. When PHP
sends a "Trailer" header in response, supplying a comma separated list
of headers they will be converted by RoadRunner to HTTP/2 trailers.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|