bbk/src/examples/001_single_request/main.cpp
2025-10-13 10:38:50 +02:00

18 lines
467 B
C++

#include <http/singlerequest.h>
#include <framework/eventloop.h>
/* Example 001
Fetch http://frontend.bredbandskollen.se/api/servers, then exit.
Write debug log to stderr.
*/
int main(int , char *[]) {
Task *t = new SingleRequest("MyRequest",
"frontend.bredbandskollen.se",
"/api/servers");
EventLoop::runTask(t);
// Note: the object t will be deleted by the event loop.
return 0;
}