handrews42

Results 1 issues of handrews42

Consider the following server code: ``` #include #include #include #include class EchoServer { public: EchoServer(Pistache::Address addr) : httpEndpoint(std::make_shared(addr)) {} void init(size_t thr = 2) { auto opts = Pistache::Http::Endpoint::options() .threads(thr);...