Google format
This commit is contained in:
@@ -1,18 +1,20 @@
|
||||
#include "connection.h"
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
FLAGS_logtostderr = 1;
|
||||
FLAGS_minloglevel = 3;
|
||||
google::InitGoogleLogging(argv[0]);
|
||||
gflags::ParseCommandLineFlags(&argc, &argv, true);
|
||||
FLAGS_logtostderr = 1;
|
||||
FLAGS_minloglevel = 3;
|
||||
google::InitGoogleLogging(argv[0]);
|
||||
gflags::ParseCommandLineFlags(&argc, &argv, true);
|
||||
|
||||
{
|
||||
firecgi::Connection conn(STDIN_FILENO, {}, [](firecgi::Request* req) { req->End(); }, {}, 16*1024);
|
||||
static_cast<void>(conn.Read());
|
||||
}
|
||||
{
|
||||
firecgi::Connection conn(
|
||||
STDIN_FILENO, {}, [](firecgi::Request* req) { req->End(); }, {},
|
||||
16 * 1024);
|
||||
static_cast<void>(conn.Read());
|
||||
}
|
||||
|
||||
gflags::ShutDownCommandLineFlags();
|
||||
google::ShutdownGoogleLogging();
|
||||
gflags::ShutDownCommandLineFlags();
|
||||
google::ShutdownGoogleLogging();
|
||||
|
||||
return 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user