- 论坛徽章:
- 0
|
今天的任务是用epoll模型对客户端的socket进行监听,并且把epoll的wait事件放在一个 线程中,还要把这些封装到一个TcpClient类中
我首先创建了一个TcpClient.h头文件,其中包含其他一些头文件件和基本的函数声明:
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <pthread.h>
#include <fcntl.h>
#include<netinet/in.h>
#include <sys/types.h>
#include <sys/time.h>
#include<sys/socket.h>
#include <sys/epoll.h>
#include<arpa/inet.h>
class TcpClient
{
public:
int CreateAClient(int epollfd,int serverport,char *argv[] );
void epollEvent(int newsocket);
int startClientmanager(int epollsize);
void stopClientManager(int threadid);
};
接着创建一个TcpClient.c的源文件,并实现类中声明的int CreateAClient(int epollfd,int serverport,char *argv[] )函数
#include"TcpClient.h"
TcpClient::int CreateAClient(int epollfd,int serverport,char *argv[] )
{
struct sockaddr_in addrSrv;
int sockClient;
int servport=serverport;
int epfd=epollfd;
sockClient=socket(AF_INET,SOCK_STREAM,0);
if(sockClient<0)
{ printf("创建套接字失败!\n");
return -1;
}
else
{
printf("创建套接字成功!\n");
return 0;
}
addrSrv.sin_addr.s_addr=inet_addr(argv[1]);
addrSrv.sin_family=AF_INET;
addrSrv.sin_port=htons(servport);
if(connect(sockClient,(struct sockaddr_in *)&addrSrv,sizeof(struct sockaddr_in))<0)
{
printf("链接失败!\n");
return-1;
}
else
{
printf("链接成功!\n");
return 0;
}
if (epoll_ctl(epfd, EPOLL_CTL_ADD, sockClient, &epoll_Ev) < 0)//注册epoll事件
{
printf("epoll set insertion error: fd=%d\n",epfd);
return -1;
}
return sockClient;
对源文件进行编译gcc -Wall TcpClient.c -o ww
报出下面的错误:
In file included from TcpClient.c:1:
TcpClient.h:14: 错误: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘TcpClient’
TcpClient.c:2: 错误: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘:’ token
望高手指点 |
|