├── .github └── workflows │ └── dzil-build-and-test.yml ├── .gitignore ├── .mailmap ├── Changes ├── Install ├── LICENSE ├── META.json ├── Makefile.PL ├── README.md ├── cpanfile ├── dist.ini ├── lib └── Net │ ├── HTTP.pm │ ├── HTTP │ ├── Methods.pm │ └── NB.pm │ └── HTTPS.pm ├── perlcriticrc ├── perltidyrc ├── t ├── http-nb.t ├── http.t ├── live-https.t ├── live.t └── socket-class.t ├── tidyall.ini └── xt └── rt-112313.t /.github/workflows/dzil-build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/.github/workflows/dzil-build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/.mailmap -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/Changes -------------------------------------------------------------------------------- /Install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/Install -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/LICENSE -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/META.json -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/README.md -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/cpanfile -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/dist.ini -------------------------------------------------------------------------------- /lib/Net/HTTP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/lib/Net/HTTP.pm -------------------------------------------------------------------------------- /lib/Net/HTTP/Methods.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/lib/Net/HTTP/Methods.pm -------------------------------------------------------------------------------- /lib/Net/HTTP/NB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/lib/Net/HTTP/NB.pm -------------------------------------------------------------------------------- /lib/Net/HTTPS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/lib/Net/HTTPS.pm -------------------------------------------------------------------------------- /perlcriticrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/perlcriticrc -------------------------------------------------------------------------------- /perltidyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/perltidyrc -------------------------------------------------------------------------------- /t/http-nb.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/t/http-nb.t -------------------------------------------------------------------------------- /t/http.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/t/http.t -------------------------------------------------------------------------------- /t/live-https.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/t/live-https.t -------------------------------------------------------------------------------- /t/live.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/t/live.t -------------------------------------------------------------------------------- /t/socket-class.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/t/socket-class.t -------------------------------------------------------------------------------- /tidyall.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/tidyall.ini -------------------------------------------------------------------------------- /xt/rt-112313.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libwww-perl/Net-HTTP/HEAD/xt/rt-112313.t --------------------------------------------------------------------------------