4.16作业

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <sys/wait.h>
#include <semaphore.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/msg.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>

#define SER_IP "192.168.203.255"
#define SER_PORT 8888
//定义信号处理函数
void handler(int signo)
{
	if(signo == SIGCHLD)
	{
		while(waitpid(-1,NULL,WNOHANG) > 0);   //回收僵尸进程
	}
}

int main(int argc, const char *argv[])
{
	//将SIGCHLD信号与信号处理器绑定
	if(signal(SIGCHLD,handler) == SIG_ERR)
	{
		perror("signal error");
		return -1;
	}

	//1.创建套接字:用于接受客户端连接请求的
	int sfd = socket(AF_INET,SOCK_STREAM,0);
	if(sfd == -1)
	{
		perror("socket error");
		return -1;
	}
	printf("socket success sfd = %d\n",sfd);

	//设置端口号快速重用
	int reuse = 1;
	if(setsockopt(sfd,SOL_SOCKET,SO_REUSEADDR,&reuse,sizeof(reuse))==-1)
	{
		perror("setsockopt error");
		return -1;
	}
	printf("端口号快速重用成功\n");
	
	//2.绑定Ip地址和端口号
	//2.1填充地址信息结构体
	struct sockaddr_in sin;
	sin.sin_family = AF_INET;
	sin.sin_port = htons(SER_PORT);
	sin.sin_addr.s_addr = inet_addr(SER_IP);

	//2.2绑定工作
	if( bind(sfd, (struct sockaddr*)&sin, sizeof(sin)) ==-1)
    {
        perror("bind error");
        return -1;
    }
    printf("bind success\n");


    //3、讲套节字设置成被动监听状态
    if( listen(sfd, 128) == -1)
    {
        perror("listen error");
        return -1;
    }
    printf("listen success\n");

    //4、阻塞等待客户端连接请求
    //定义地址信息结构体变量用于接受客户端的地址信息
    struct sockaddr_in cin;
    socklen_t socklen = sizeof(cin);     //接受地址信息的长度
    
  	while(1)
	{
		int newfd = accept(sfd,(struct sockaddr*)&cin,&socklen);
		if(newfd == -1)
		{
			perror("accept error");
			return -1;
		}

		printf("[%s:%d]:已连接,newfd = %d\n",\
				inet_ntoa(cin.sin_addr),ntohs(cin.sin_port),newfd);
		pid_t pid = fork();     //创建子进程,用于通信
		if(pid > 0)
		{
			//回收子进程
			//外套皮带(-1,NULL,WNOHANG);
			
			//由于父进程中不使用newfd,所以将其关闭
			close(newfd);
		}else if(pid == 0)
		{
			//关闭sfd
			close(sfd);

            //5、数据通信
            char rbuf[128] = "";       //用于接受消息
            while(1)
            {
                bzero(rbuf, sizeof(rbuf));    //清空容器
                //从套接字文件中读取消息
                //int ret = read(newfd, rbuf, sizeof(rbuf));
                int ret = recv(newfd, rbuf, sizeof(rbuf), 0);
                if(ret == 0)
                {
                    printf("客户端已下线\n");
                    break;
                }
                printf("[%s:%d]: %s\n", \
                        inet_ntoa(cin.sin_addr), ntohs(cin.sin_port),rbuf );

                //将字符串加个笑脸回回去
                strcat(rbuf, "*_*");
                //write(newfd, rbuf, strlen(rbuf));
                send(newfd, rbuf, strlen(rbuf), 0);
                printf("发送成功\n");
            }

            //6、关闭套接字
            close(newfd);

            //退出子进程
            exit(EXIT_SUCCESS);
        }
    }

    close(sfd);

	return 0;
}
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <sys/wait.h>
#include <semaphore.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/msg.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>

#define SER_IP "192.168.203.255"
#define SER_PORT 8888

//定义用与给线程体传参的结构体类型
struct MsgInfo
{
	int newfd;
	struct sockaddr_in cin;
};

//定义线程体函数
void *deal_cli_msg(void * arg)
{
	//将传递进来的数据解析出来
	int newfd = ((struct MsgInfo*)arg)->newfd;
	struct sockaddr_in cin = ((struct MsgInfo*)arg)->cin;

	//数据通信
	char rbuf[128] = "";  //用于接收消息
	while(1)
	{
		bzero(rbuf,sizeof(rbuf));   //清空容器
		//从套接字文件中读取消息
		//int ret = read(newfd,rbuf,sizeof(rbuf));
		int ret = recv(newfd,rbuf,sizeof(rbuf),0);
		if(ret == 0)
		{
			printf("客户端已下线\n");
			break;
		}
		printf("[%s:%d]: %s\n",\
				inet_ntoa(cin.sin_addr),ntohs(cin.sin_port),rbuf);

		//将字符串加个笑脸回回去
		strcat(rbuf,"*_*");
		//write(newfd,rbuf,strlen(rbuf));
		send(newfd,rbuf,strlen(rbuf),0);
		printf("发送成功\n");
	}

	//关闭套接字
	close(newfd);
	//退出线程
	pthread_exit(NULL);
}
int main(int argc, const char *argv[])
{
	//1、创建套节字:用于接收客户端链接请求的
    int sfd = socket(AF_INET, SOCK_STREAM, 0);
    if(sfd == -1)
    {
        perror("socket error");
        return -1;
    }
    printf("socket success sfd = %d\n", sfd);     //3

    //设置端口号快速重用
    int reuse = 1;
    if(setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse))==-1)
    {
        perror("setsockopt error");
        return -1;
    }
    printf("端口号快速重用成功\n");
    
    //2、绑定IP地址和端口号
    //2.1 填充地址信息结构体
    struct sockaddr_in sin;
    sin.sin_family = AF_INET;       //地址族
    sin.sin_port = htons(SER_PORT);  //端口号
    sin.sin_addr.s_addr = inet_addr(SER_IP);    //IP地址

    //2.2 绑定工作
    if( bind(sfd, (struct sockaddr*)&sin, sizeof(sin)) ==-1)
    {
        perror("bind error");
        return -1;
    }
    printf("bind success\n");


    //3、讲套节字设置成被动监听状态
    if( listen(sfd, 128) == -1)
    {
        perror("listen error");
        return -1;
    }
    printf("listen success\n");

    //4、阻塞等待客户端连接请求
    //定义地址信息结构体变量用于接受客户端的地址信息
    struct sockaddr_in cin;
    socklen_t socklen = sizeof(cin);     //接受地址信息的长度
	
	while(1)
	{
		int newfd = accept(sfd,(struct sockaddr*)&cin,&socklen);
		if(newfd == -1)
		{
			perror("accept error");
			return -1;
		}

		printf("[%s:%d]:已连接,newfd = %d\n",\
				inet_ntoa(cin.sin_addr),ntohs(cin.sin_port),newfd);

		//定义用于传参的数量
		struct MsgInfo info = {newfd,cin};

		//创建分支线程用于通信
		pthread_t tid = -1;
		if(pthread_create(&tid,NULL,deal_cli_msg,&info) != 0)
		{
			printf("线程创建失败\n");
			return -1;
		}

		//回收分支线程的资源
		pthread_detach(tid);
	}
	close(sfd);


	return 0;
}
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <sys/wait.h>
#include <semaphore.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/msg.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <sys/un.h>

int main(int argc, const char *argv[])
{
	//创建套接字:用于接收客户端链接请求的
	int sfd = socket(AF_UNIX,SOCK_STREAM,0);
	if(sfd == -1)
	{
		perror("socket error");
		return -1;
	}
	printf("socket success sfd = %d\n",sfd);

	//判断要绑定的套接字文件是否存在,如果存在,需要将其删除
	if(access("./unix",F_OK) == 0)
	{
		//说明文件存在,需要将其删除
		if(unlink("./unix") != 0)
		{
			perror("unlink error");
			return -1;
		}
	}

	//2.绑定套接字文件
	//2.1填充地址信息结构体
	struct sockaddr_un sun;
	sun.sun_family = AF_UNIX;    //通信域
	strcpy(sun.sun_path , "./unix");    //套接字文件

	//2.2绑定工作
	if( bind(sfd,(struct sockaddr*)&sun,sizeof(sun)) == -1)
	{
		perror("error");
		return -1;
		}
	printf("bind success\n");

	//3.将套接字设置成被动监听状态
	if(listen(sfd,128) == -1)
	{
		perror("listen error");
		return -1;
	}
	printf("listen success\n");

	//阻塞等待客户端连接请求
	//定义地址信息结构体变量用于接受客户端的地址信息
	struct sockaddr_un cun;
	socklen_t socklen = sizeof(cun); //接受地址信息的长度

	int newfd = accept(sfd,(struct sockaddr*)&cun,&socklen);
	if(newfd == -1)
	{
		perror("accept error");
		return -1;
	}
	printf("[%s]:已连接,newfd= %d\n",cun.sun_path,newfd);

	//数据通信
	char rbuf[128]="";  //用于接收消息
	while(1)
	{
		bzero(rbuf,sizeof(rbuf));  //清空容器
		//从套接字文件中读取消息
		//int ret = read(newfd,rbuf,sizeof(rbuf);
		int ret = recv(newfd,rbuf,sizeof(rbuf),0);
		if(ret == 0)
		{
			printf("客户端已下线\n");
			break;
		}
		printf("[%s]: %s\n",cun.sun_path,rbuf);

		//将字符串加个笑脸回回去
		strcat(rbuf,"*_*");
		//write(newfd,rbuf,strlen(rbuf));
		send(newfd,rbuf,strlen(rbuf),0);
		printf("已发送成功\n");
	}

	//6.关闭套接字
	close(newfd);
	close(sfd);

	return 0;
}
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <sys/wait.h>
#include <semaphore.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/msg.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <sys/un.h>
int main(int argc, const char *argv[])
{
	//1.创建用于通信的套接字文件描述符
	int cfd = socket(AF_UNIX,SOCK_STREAM,0);
	if(cfd == -1)
	{
		perror("socket error");
		return -1;
	}
	printf("socket success cfd = %d\n",cfd);

	//判断要绑定的套接字文件是否存在,如果存在,需要将其删除
	if(access("./linux",F_OK) == 0)
	{
		//说明文件存在,需要将其删除
		if(unlink("./linux") != 0)
		{
			perror("error");
			return -1;
		}
	}


	//2.绑定套接字文件
	//2.1填充地址信息结构体
	struct sockaddr_un cun;
	cun.sun_family = AF_UNIX;
	strcpy(cun.sun_path,"./linux");

	//2.2绑定工作
	if(bind(cfd,(struct sockaddr*)&cun,sizeof(cun)) == -1)
	{
			perror("bind");
			return -1;
	}
	printf("bind success\n");

	//3.连接服务器
	//3.1填充要连接的服务器地址信息结构体
	struct sockaddr_un sun;
	sun.sun_family =AF_UNIX;   //协议族
	strcpy(sun.sun_path,"./unix");   //服务器绑定的套接字文件


	//3.2连接服务器
	if(connect(cfd,(struct sockaddr*)&sun,sizeof(sun)) == -1)
	{
		perror("connect error");
		return -1;
	}
	printf("connect success\n");

	//4.数据收发
	char wbuf[128] = "";
	while(1)
	{
		//从终端获取数据
		printf("请输入>>>>");
		fgets(wbuf,sizeof(wbuf),stdin);
		wbuf[strlen(wbuf)-1] = '\0';
		if(strcmp(wbuf,"quit") == 0)
		{
			break;
		}

		//将数据发送给服务器
		//write(cfd,wbuf,strlen(wbuf);
		send(cfd,wbuf,strlen(wbuf),0);

		//接收服务器发来的消息
		bzero(wbuf,sizeof(wbuf));
		//read(cfd,wbuf,sizeof(wbuf));
		recv(cfd,wbuf,sizeof(wbuf),0);
		printf("收到服务器的消息为: %s\n",wbuf);
	}
		//关闭套接字
		close(cfd);

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值