c++ http服务器客户端程序-超时时间设置(5)

一般情况下,服务器客户端存在读写超时时间存在,因此某些情况需要设置一个超时时间

服务器程序设置超时时间:

#include "httplib.h"
#include

using namespace httplib;

int main()
{
    Server svr;
    svr.set_read_timeout(5, 0); // 5 seconds
    svr.set_write_timeout(5, 0); // 5 seconds
    svr.set_idle_interval(0, 100000); // 100 milliseconds

    svr.Get("/hi", [](const Request& req, Response& res) 
    {
        res.set_content("Hello World!", "text/plain");
    });
    svr.Get("/stop", [&](const Request& req, Response& res)
    {
        svr.stop();
    });

    svr.listen("localhost", 1234);

    return 0;
}
 

客户端程序设置:

#include
using namespace httplib;
using namespace std;

int main()
{
    httplib::Client cli("localhost", 1234);
    cli.set_connection_timeout(0, 300000); // 300 milliseconds
    cli.set_read_timeout(20, 0); // 20 seconds
    cli.set_write_timeout(5, 0); // 5 seconds
    if(auto res = cli.Get("/hi"))
    {
        if (res->status == 200) 
        {
            std::cout << res->body << std::endl;
        }
    }
    else 
    {
        auto err = res.error();
    }

    return 0;
}

你可能感兴趣的:(c++,MFC,C++网络编程,c++,http,服务器)