#ifndef MUDUO_EXAMPLES_SIMPLE_DAYTIME_DAYTIME_H #define MUDUO_EXAMPLES_SIMPLE_DAYTIME_DAYTIME_H #include "muduo/net/TcpServer.h" // RFC 867 class DaytimeServer { public: DaytimeServer(muduo::net::EventLoop* loop, const muduo::net::InetAddress& listenAddr); void start(); private: void onConnection(const muduo::net::TcpConnectionPtr& conn); void onMessage(const muduo::net::TcpConnectionPtr& conn, muduo::net::Buffer* buf, muduo::Timestamp time); muduo::net::TcpServer server_; }; #endif // MUDUO_EXAMPLES_SIMPLE_DAYTIME_DAYTIME_H