-
Notifications
You must be signed in to change notification settings - Fork 0
/
test9.cc
45 lines (38 loc) · 1.39 KB
/
test9.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "EventLoop.h"
#include "InetAddress.h"
#include "TcpConnection.h"
#include "TcpServer.h"
#include "logging/Logging.h"
#include <stdio.h>
void onConnection(const muduo::TcpConnectionPtr &conn) {
if (conn->connected()) {
printf("onConnection(): tid=%d new connection [%s] from %s\n",
muduo::CurrentThread::tid(), conn->name().c_str(),
conn->peerAddr().toHostPort().c_str());
} else {
printf("onConnection(): tid=%d connection [%s] is down\n",
muduo::CurrentThread::tid(), conn->name().c_str());
}
}
void onMessage(const muduo::TcpConnectionPtr &conn, muduo::Buffer *buf,
muduo::Timestamp receiveTime) {
printf(
"onMessage(): tid=%d received %zd bytes from connection [%s] at %s\n",
muduo::CurrentThread::tid(), buf->readableBytes(), conn->name().c_str(),
receiveTime.toFormattedString().c_str());
conn->send(buf->retrieveAsString());
}
int main(int argc, char *argv[]) {
muduo::Logger::setLogLevel(muduo::Logger::LogLevel::TRACE);
printf("main(): pid = %d\n", getpid());
muduo::InetAddress listenAddr(9981);
muduo::EventLoop loop;
muduo::TcpServer server(&loop, listenAddr);
server.setConnectionCallback(onConnection);
server.setMessageCallback(onMessage);
if (argc > 1) {
server.setThreadNum(atoi(argv[1]));
}
server.start();
loop.loop();
}