网络编程作业

独立完成并发服务器搭建:

​
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <signal.h>
#include <sys/wait.h>
#include <pthread.h>

#define ERR_MSG(meg) do{\
	fprintf(stderr, "line:%d\n", __LINE__);\
	perror(meg);\
}while(0)
#define IP "192.168.0.109"


struct cli_msg
{
	int newfd;
	struct sockaddr_in cin;
};
void handler(int sig)
{
	while(waitpid(-1,NULL, WNOHANG) > 0);
}

void *deal_clie_msg(void *arg)
{
	int newfd = (*(struct cli_msg*)arg).newfd ;
	struct sockaddr_in cin = (*(struct cli_msg*)arg).cin;
	char buf[128] ="";
	ssize_t res = 0;
	while(1)
	{
		bzero(buf, sizeof(buf));
		res = recv(newfd, buf, sizeof(buf),0);
		if(res < 0)
		{
			ERR_MSG("recv");
			break;
		}
		else if(0 == res)
		{

			printf("[%s : %d] newfd = %d 客户端下线__%d__\n",\
					inet_ntoa(cin.sin_addr), ntohs(cin.sin_port),newfd, __LINE__);
			break;
		}
		printf("[%s : %d] newfd = %d :%s__%d__\n",\
				inet_ntoa(cin.sin_addr), ntohs(cin.sin_port),newfd, buf, __LINE__);

		if(send(newfd,buf,sizeof(buf),0) < 0)
		{
			ERR_MSG("send");
			break;
		}
		printf("发送成功\n");
	}
	close(newfd);
	pthread_exit(NULL);
}
int main(int argc, const char *argv[])
{
	__sighandler_t s = signal(SIGCHLD, handler);
	if(SIG_ERR == s)
	{
		ERR_MSG("signal");
		return -1;
	}

	int sfd = socket(AF_INET, SOCK_STREAM, 0);
	if(sfd < 0)
	{
		ERR_MSG("socket");
		return -1;
	}
	int reuse = 1;
	if(setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse)) < 0)
	{
		ERR_MSG("setsockopt");
		return -1;
	}
	struct sockaddr_in sin;
	sin.sin_family  = AF_INET;
	sin.sin_port   = htons(6666);
	sin.sin_addr.s_addr = inet_addr(IP);

	if(bind(sfd, (struct sockaddr *)&sin, sizeof(sin)) < 0)
	{
		ERR_MSG("bind");
		return -1;
	}
	printf("bind success __%d__\n", __LINE__);

	if(listen(sfd ,128) < 0)
	{
		ERR_MSG("listen");
		return -1;
	}
	printf("listen success __%d__\n",__LINE__);

	socklen_t addrlen = sizeof(cin);
	pthread_t tid ;
	struct cli_msg info;
	while(1)
	{
		newfd = accept(sfd, (struct sockaddr*)&cin, &addrlen);
		if(newfd < 0)
		{
			ERR_MSG("accept");
			return -1;
		}
		printf("[%s : %d] newfd = %d 连接成功__%d__\n",\
				inet_ntoa(cin.sin_addr), ntohs(cin.sin_port),newfd, __LINE__);
		info.newfd = newfd;
		info.cin = cin;
		if(pthread_create(&tid,NULL, deal_clie_msg, (void *)&info) != 0)
		{
			fprintf(stderr,"line: %d pthread_create failed\n", __LINE__);
			return -1;
		}
		pthread_detach(tid);
	}
	close(sfd);
	return 0;
}

​

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值