├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── curl.h ├── include ├── curlmulti.h ├── request.h └── result.h ├── src ├── Makefile ├── curlmulti.cpp ├── includes.h ├── request.cpp └── result.cpp └── test ├── .gitignore ├── Makefile ├── http.cpp └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/README.md -------------------------------------------------------------------------------- /curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/curl.h -------------------------------------------------------------------------------- /include/curlmulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/include/curlmulti.h -------------------------------------------------------------------------------- /include/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/include/request.h -------------------------------------------------------------------------------- /include/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/include/result.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/curlmulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/src/curlmulti.cpp -------------------------------------------------------------------------------- /src/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/src/includes.h -------------------------------------------------------------------------------- /src/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/src/request.cpp -------------------------------------------------------------------------------- /src/result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/src/result.cpp -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/test/http.cpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopernicaMarketingSoftware/REACT-CPP-CURL/HEAD/test/main.cpp --------------------------------------------------------------------------------