Files
mirall/fastcgi.h

11 lines
123 B
C
Raw Normal View History

2019-04-28 00:17:32 +00:00
#pragma once
class FastCGIServer {
public:
FastCGIServer(int port);
void Serve();
private:
int listen_sock_;
};