tcp实现一对一通信

服务器代码

#include <stdio.h>
#include <stdio.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>

int con_fd = -1;

/*tcp协议客户端服务器CS结构的通信(打印客户端的IP和端口号,客户端能够多次运行)*/
void *nv_shen(void *arg)
{
	int fd = con_fd;
	struct sockaddr_in addr = *(struct sockaddr_in *)arg;
	
	char *buf = malloc(100);
	while(1)
	{
		
		memset(buf,0,100);
		int n = recv(fd,buf,100,0);//recv和send配套阻塞
		if(n == 0)
		{
			printf("【端口号:[%d],%s】 : 已退出\n", ntohs(addr.sin_port), inet_ntoa(addr.sin_addr));
			break;
		}
		printf("【端口号:[%d],%s】 : %s\n", ntohs(addr.sin_port), inet_ntoa(addr.sin_addr),buf );
		
		
		
	}
		
}



int main(int argc,char **argv)
{
	//1.创建套接字
	int sock_fd = socket(AF_INET,SOCK_STREAM,0);
	//2.绑定
	
	struct sockaddr_in serve_addr, cilent_addr;//
	serve_addr.sin_family = AF_INET;
	serve_addr.sin_port = htons(atoi(argv[2]));//网络字节序-----主机字节序
	serve_addr.sin_addr.s_addr = inet_addr(argv[1]);//网络字节序
	
	socklen_t serve_len = sizeof(serve_addr);
	socklen_t cilent_len = sizeof(cilent_addr);
	
	bind(sock_fd, (struct sockaddr *)&serve_addr,serve_len);
	
	//3.监听
	listen(sock_fd,4);
	
	//创建线程
	pthread_t tid;
	
	
	
	
	char *buf = malloc(100);
	//5.接收消息
	while(1)
	{
		memset(buf,0,100);
		//4.等待连接
		
		printf("等待连接...\n");
		con_fd = accept(sock_fd, (struct sockaddr *)&cilent_addr, &cilent_len);//阻塞运行
		//有对端地址,怎么访问到?
		cilent_addr.sin_port;
		
		printf("端口号:[%d],%s连接成功...\n", ntohs(cilent_addr.sin_port), inet_ntoa(cilent_addr.sin_addr) );
		
		pthread_create(&tid,NULL,nv_shen,  (void *)&cilent_addr);
		
		
		//4.发消息
		fgets(buf,100,stdin);
		
		send(sock_fd,buf,100,0);
		
		
		
	}
	
}

客户端代码

#include <stdio.h>
#include <stdio.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>


int main(int argc,char **argv)
{
	//1.创建套接字
	int sock_fd = socket(AF_INET,SOCK_STREAM,0);
	//2.绑定
	
	struct sockaddr_in serve_addr;
	serve_addr.sin_family = AF_INET;
	serve_addr.sin_port = htons(atoi(argv[2]));//网络字节序-----主机字节序
	serve_addr.sin_addr.s_addr = inet_addr(argv[1]);//网络字节序
	
	socklen_t serve_len = sizeof(serve_addr);
	
	bind(sock_fd, (struct sockaddr *)&serve_addr,serve_len);
	
	
	//3.发起连接请求
	connect(sock_fd,(struct sockaddr *)&serve_addr,serve_len);
	
	//创建线程
	pthread_t tid;
	
	char *s_buf = malloc(100);
	
	char *r_buf = malloc(100);
	while(1)
	{
		memset(s_buf,0,100);
		memset(r_buf,0,100);
		//4.发消息
		fgets(s_buf,100,stdin);
		
		send(sock_fd,s_buf,100,0);
		
		int n = recv(sock_fd,r_buf,100,0);//recv和send配套阻塞
		if(n == 0)
		{
			printf("【端口号:[%d],%s】 : 已退出\n", ntohs(serve_addr.sin_port), inet_ntoa(serve_addr.sin_addr));
			break;
		}
		printf("【端口号:[%d],%s】 : %s\n", ntohs(serve_addr.sin_port), inet_ntoa(serve_addr.sin_addr),r_buf );
	}
	
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

向風而行

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值