TCP socket communication examples client and Server

//server.c

#include <stdio.h>

#include <sys/types.h>

#include <sys/socket.h>

#include <netinet/in.h>

#include <arpa/inet.h>

#define BUFFSIZE 4096

int main(int argc, char *argv[])

{

const char* szwelcomestr="Welcome to my configure server.";

int server_sockfd;//server socket

int client_sockfd;//client socket

int len;

struct sockaddr_in my_addr; //server addr

struct sockaddr_in remote_addr; //client addr

int sin_size;

char buf[BUFFSIZE]; //buff to save data

int nflag=1;

memset(&my_addr,0,sizeof(my_addr)); //zero

my_addr.sin_family=AF_INET; //ip family

my_addr.sin_addr.s_addr= inet_addr("192.168.1.34");//binding server ip

my_addr.sin_port=htons(8000); //server port

/*create server socket*/

if((server_sockfd=socket(PF_INET,SOCK_STREAM,0))<0)

{

perror("socket");

return 1;

}

/*bind*/

if (bind(server_sockfd,(struct sockaddr *)&my_addr,sizeof(struct sockaddr))<0)

{

perror("bind");

return 1;

}

/*listen num is 5*/

listen(server_sockfd,5);

sin_size=sizeof(struct sockaddr_in);

/*accept ,wait client to arrive at*/

if((client_sockfd=accept(server_sockfd,(struct sockaddr *)&remote_addr,&sin_size))<0)

{

perror("accept");

return 1;

}

printf("accept client %s\n",inet_ntoa(remote_addr.sin_addr));

len=send(client_sockfd,szwelcomestr,strlen(szwelcomestr),0);//send the welcome information

/*receive the data from client, and send back to it*/

while((len=recv(client_sockfd,buf,BUFFSIZE,0)) > 0)

{

printf("reve data %s,len=%d\n",buf, len);

if(send(client_sockfd,buf,len,0)<0)

{

perror("write");

return 1;

}

//clear the buff

memset(buf, 0, sizeof(buf));

}

close(client_sockfd);

close(server_sockfd);

return 0;

}

//client.c

#include <stdio.h>

#include <sys/types.h>

#include <sys/socket.h>

#include <netinet/in.h>

#include <arpa/inet.h>

int main(int argc, char *argv[])

{

int client_sockfd;

int len;

struct sockaddr_in remote_addr; //server address

char buf[BUFSIZ]; //buff definition

memset(&remote_addr,0,sizeof(remote_addr)); //set zero

remote_addr.sin_family=AF_INET; //IPfamily

remote_addr.sin_addr.s_addr=inet_addr("192.168.1.34");//server IP to link

remote_addr.sin_port=htons(8000); //server port to link

/*create the socket for tcp stream*/

if((client_sockfd=socket(PF_INET,SOCK_STREAM,0))<0)

{

perror("socket");

return 1;

}

/*collect to the server socket*/

if(connect(client_sockfd,(struct sockaddr *)&remote_addr,sizeof(struct sockaddr))<0)

{

perror("connect");

return 1;

}

printf("connected to server \n");

len=recv(client_sockfd,buf,BUFSIZ,0);//receive the server data

buf[len]='\0';

printf("%s",buf); //print the server welcom banner

/*loop the send the string and print the received data, exit to quit the loop*/

while(1)

{

printf("Enter string to send:");

scanf("%s",buf);

if(strcmp(buf,"exit") ==0)

break;

printf("client to send %s,length of buf is %d\n", buf,strlen(buf));

len=send(client_sockfd,buf,strlen(buf),0);

len=recv(client_sockfd,buf,BUFSIZ,0);

buf[len]='\0';

printf("received:%s\n",buf);

}

close(client_sockfd);//close the socket

return 0;

}

相关推荐
leiming65 小时前
C++ vector容器
开发语言·c++·算法
Xの哲學6 小时前
Linux流量控制: 内核队列的深度剖析
linux·服务器·算法·架构·边缘计算
tuokuac6 小时前
docker中nginx配置报错解决
linux·运维·服务器
yaoh.wang7 小时前
力扣(LeetCode) 88: 合并两个有序数组 - 解法思路
python·程序人生·算法·leetcode·面试·职场和发展·双指针
Zeku7 小时前
20251129 - 详细解析Linux的mmap(内存映射)
linux·驱动开发·嵌入式软件·linux应用开发
LYFlied7 小时前
【每日算法】 LeetCode 56. 合并区间
前端·算法·leetcode·面试·职场和发展
Joren的学习记录8 小时前
【Linux运维大神系列】docker详解(四)
linux·运维·docker
艾醒8 小时前
大模型原理剖析——多头潜在注意力 (MLA) 详解
算法
艾醒8 小时前
大模型原理剖析——DeepSeek-V3深度解析:671B参数MoE大模型的技术突破与实践
算法
老王熬夜敲代码8 小时前
网络中数据传输的具体过程
linux·网络·笔记