Files
mirall/example_clock.cc

16 lines
338 B
C++
Raw Normal View History

2019-04-26 05:34:19 +00:00
#include <gflags/gflags.h>
#include <glog/logging.h>
2019-04-28 00:17:32 +00:00
#include "sse.h"
2019-04-26 05:34:19 +00:00
DEFINE_int32(port, 9000, "TCP port to bind");
int main(int argc, char *argv[]) {
google::InitGoogleLogging(argv[0]);
gflags::ParseCommandLineFlags(&argc, &argv, true);
SSEServer server(FLAGS_port, [](std::unique_ptr<SSEStream> stream) {
2019-04-28 06:47:30 +00:00
});
2019-04-28 00:17:32 +00:00
server.Serve();
2019-04-26 05:34:19 +00:00
}