11 lines
123 B
C
11 lines
123 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class FastCGIServer {
|
||
|
|
public:
|
||
|
|
FastCGIServer(int port);
|
||
|
|
void Serve();
|
||
|
|
|
||
|
|
private:
|
||
|
|
int listen_sock_;
|
||
|
|
};
|