diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-04-04 16:32:10 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-04-04 16:32:10 +0200 |
commit | 938fbe7a2f2f10a3abb530a9463e57fc20f40038 (patch) | |
tree | 62ee0c285c672b10a42b0690a011ede7a0bf00b6 /http.h | |
parent | 95d5acc8c7e60255b19e7084e374eb26cc5d0ba3 (diff) |
HTTP and HTTPs
Diffstat (limited to 'http.h')
-rw-r--r-- | http.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,9 @@ #pragma once -int http_server(int argc, char* argv[]); +#include "config.h" +namespace HTTP { + +int server(Config& config); + +} // namespace HTTP |