listen on 127.0.0.1 instead of 'localhost'

This commit is contained in:
Albert S. 2018-11-05 22:34:59 +01:00
父節點 a7137460f0
當前提交 0bd12d1684

查看文件

@ -91,5 +91,5 @@ void HttpGateway::work(RequestWorker &worker)
};
server.Get("/(.*)", handler);
server.Post("/(.*)", handler);
server.listen("localhost", 1234);
server.listen("127.0.0.1", 1234);
}