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;

}

相关推荐
张李浩4 小时前
Leetcode 054螺旋矩阵 采用方向数组解决
算法·leetcode·矩阵
big_rabbit05025 小时前
[算法][力扣101]对称二叉树
数据结构·算法·leetcode
炸膛坦客5 小时前
Linux - Ubuntu - PC端:(三)切换中英文,Fcitx5
linux·ubuntu
7yewh5 小时前
jetson_yolo_deployment 01_linux_dev_env
linux·嵌入式硬件·yolo·机器人·嵌入式
cyber_两只龙宝5 小时前
【Haproxy】Haproxy的算法详解及配置
linux·运维·服务器·云原生·负载均衡·haproxy·调度算法
美好的事情能不能发生在我身上5 小时前
Hot100中的:贪心专题
java·数据结构·算法
阿常呓语5 小时前
Linux命令 jq详解
linux·运维·shell·jq
2301_821700535 小时前
C++编译期多态实现
开发语言·c++·算法
xixihaha13246 小时前
C++与FPGA协同设计
开发语言·c++·算法
小小怪7506 小时前
C++中的函数式编程
开发语言·c++·算法