mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 06:26:02 -07:00
Modernize some additional code
This commit is contained in:
parent
c652919954
commit
a62a48a7b5
1 changed files with 5 additions and 6 deletions
11
httplib.h
11
httplib.h
|
@ -473,11 +473,10 @@ private:
|
|||
|
||||
class Server {
|
||||
public:
|
||||
typedef std::function<void(const Request &, Response &)> Handler;
|
||||
typedef std::function<void(const Request &, Response &,
|
||||
const ContentReader &content_reader)>
|
||||
HandlerWithContentReader;
|
||||
typedef std::function<void(const Request &, const Response &)> Logger;
|
||||
using Handler = std::function<void(const Request &, Response &)>;
|
||||
using HandlerWithContentReader = std::function<void(const Request &, Response &,
|
||||
const ContentReader &content_reader)>;
|
||||
using Logger = std::function<void(const Request &, const Response &)>;
|
||||
|
||||
Server();
|
||||
|
||||
|
@ -576,7 +575,7 @@ private:
|
|||
|
||||
class Client {
|
||||
public:
|
||||
Client(const char *host, int port = 80, time_t timeout_sec = 300);
|
||||
explicit Client(const char *host, int port = 80, time_t timeout_sec = 300);
|
||||
|
||||
virtual ~Client();
|
||||
|
||||
|
|
Loading…
Reference in a new issue