Lots of file splits

This commit is contained in:
Ian Gulliver
2019-04-28 00:17:32 +00:00
parent 731da3c769
commit 8a2a19ac37
9 changed files with 298 additions and 32 deletions

10
fastcgi.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
class FastCGIServer {
public:
FastCGIServer(int port);
void Serve();
private:
int listen_sock_;
};