HTTP Progress Monitoring in C++
This blog post shows how to monitor the progress of HTTP uploads and downloads in C++. The first step is to create a C++ callback class that derives from the CkHttpProgress base class. You’ll be overriding one or more of the callback methods. For example: class MyHttpProgress : public CkHttpProgress { public: MyHttpProgress(void) { } virtual ~MyHttpProgress(void) { } void […]