用c语言实现的epoll服务器

这篇博客介绍了如何在Linux环境下使用C语言构建一个基于epoll的TCP服务器,是后台开发的重要技能。内容涵盖了基本的TCP服务器实现,并提示若要实现更复杂的功能,如ET模式、非阻塞I/O和数据缓存,需要对读写函数进行扩展。
摘要由CSDN通过智能技术生成

在linux后台开发实战操作中,epoll服务器,是必备技能。

我今天就写了一个最简单的TCP server,你稍微改改就可以用于简单的数据通信。

如果要实现别的功能,比如ET,非阻塞,数据缓存,那都要围绕读写函数改了。

主要的系统API:

int epoll_create(int size);

int epoll_wait(int epfd, struct epoll_event *events,int maxevents, int timeout);

int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event);

以下是代码:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>

#include <sys/types.h>
#include <sys/socket.h>

#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

#include <sys/epoll.h>

#define SERVER_IPADDR "0.0.0.0"

#define SERVER_PORT "1122"

#define EV_READ EPOLLIN

#define EV_WRITE EPOLLOUT

#define MAX_EVENT_NUMS 1024

static int clifds[MAX_EVENT_NUMS];


int startListenSocket(const char *ip
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值