├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── LICENSE ├── README.md ├── cancelreader.go ├── context_post17.go ├── context_pre17.go ├── example_test.go ├── go.mod ├── go.sum ├── misc ├── git │ └── pre-commit └── lint_tester.goo ├── perattempttimeout_post17.go ├── perattempttimeout_pre17.go ├── rehttp.go ├── rehttp_delayfn_test.go ├── rehttp_mock_test.go ├── rehttp_retryfn_test.go ├── rehttp_server_post17_test.go ├── rehttp_server_test.go ├── timeouterr_post113.go ├── timeouterr_pre113.go └── timeouterr_test.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/README.md -------------------------------------------------------------------------------- /cancelreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/cancelreader.go -------------------------------------------------------------------------------- /context_post17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/context_post17.go -------------------------------------------------------------------------------- /context_pre17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/context_pre17.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/go.sum -------------------------------------------------------------------------------- /misc/git/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/misc/git/pre-commit -------------------------------------------------------------------------------- /misc/lint_tester.goo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/misc/lint_tester.goo -------------------------------------------------------------------------------- /perattempttimeout_post17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/perattempttimeout_post17.go -------------------------------------------------------------------------------- /perattempttimeout_pre17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/perattempttimeout_pre17.go -------------------------------------------------------------------------------- /rehttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/rehttp.go -------------------------------------------------------------------------------- /rehttp_delayfn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/rehttp_delayfn_test.go -------------------------------------------------------------------------------- /rehttp_mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/rehttp_mock_test.go -------------------------------------------------------------------------------- /rehttp_retryfn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/rehttp_retryfn_test.go -------------------------------------------------------------------------------- /rehttp_server_post17_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/rehttp_server_post17_test.go -------------------------------------------------------------------------------- /rehttp_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/rehttp_server_test.go -------------------------------------------------------------------------------- /timeouterr_post113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/timeouterr_post113.go -------------------------------------------------------------------------------- /timeouterr_pre113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/timeouterr_pre113.go -------------------------------------------------------------------------------- /timeouterr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuerkitoBio/rehttp/HEAD/timeouterr_test.go --------------------------------------------------------------------------------