- 论坛徽章:
- 0
|
int rfd = 0 ;
struct sockaddr_in rsa;
socklen_t rsa_len = 0;
int n = 0;
if(fd == lfd )
{
if((ev_flags & E_READ))
{
if((rfd = accept(fd, (struct sockaddr *)&rsa, &rsa_len)) > 0 )
{
SHOW_LOG("Accept new connection %s:%d via %d total %d ",inet_ntoa(rsa.sin_addr), ntohs(rsa.sin_port),rfd, ++(evbase->connections));
/* set FD NON-BLOCK */
fcntl(rfd, F_SETFL, O_NONBLOCK);
if((events[rfd] = ev_init()))//除了监听的event都保存在events中
{
events[rfd]->set(events[rfd], rfd, E_READ|E_PERSIST,(void *)events[rfd], &ev_handler);
evbase->add(evbase, events[rfd]);
}
return ;
}
else
{
FATAL_LOG("Accept new connection failed, %s", strerror(errno));
}
}
return ;
}
这段程序就是处理接受服务器连接的那一段代码。 |
|