当前位置:网站首页>作业8.9 构建TCP协议的服务器
作业8.9 构建TCP协议的服务器
2022-08-10 12:40:00 【不知名大学生M】
构建TCP协议的服务器
实现代码
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <string.h>
#include <unistd.h>
//打印错误新的宏函数
#define ERR_MSG(msg) do{
\ fprintf(stderr, " __%d__ ", __LINE__);\ perror(msg);\ }while(0)
#define PORT 8888 //1024~49151
#define IP "192.168.31.96" //本机IP,用ifconfig查看
int main(int argc, const char *argv[])
{
//创建流式套接字
int sfd = socket(AF_INET, SOCK_STREAM, 0);
if(sfd < 0)
{
ERR_MSG("socket");
return -1;
}
printf("create socket success\n");
//填充地址信息结构体,真实的地址信息结构体与协议族相关
//AF_INET,所以详情请看man 7 ip
struct sockaddr_in sin;
sin.sin_family = AF_INET;
sin.sin_port = htons(PORT); //网络字节序的端口号
sin.sin_addr.s_addr = inet_addr(IP); //网络字节序的IP地址
//将地址信息结构体绑定到套接字上
if(bind(sfd, (struct sockaddr*)&sin, sizeof(sin)) < 0)
{
ERR_MSG("bind");
return -1;
}
printf("bind success\n");
//将套接字设置为被动监听状态,让内核去监听是否有客户端连接;
if(listen(sfd, 10) < 0)
{
ERR_MSG("listen");
return -1;
}
printf("listen success\n");
struct sockaddr_in cin;
socklen_t addrlen = sizeof(cin);
//从已完成连接的队列头中,取出一个客户端的信息,创建生成一个新的套接字文件描述符,
//该文件描述符才是与客户端通信的文件描述符!!!
int newfd = accept(sfd, (struct sockaddr*)&cin, &addrlen);
if(newfd < 0)
{
perror("accept");
return -1;
}
//网络字节序的IP-->点分十进制 网络字节序的port--->本机字节序
printf("[%s : %d] newfd = %d\n", inet_ntoa(cin.sin_addr), ntohs(cin.sin_port),newfd);
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");
return -1;
}
else if(0 == res)
{
printf("[%s : %d] newfd = %d客户端退出\n", inet_ntoa(cin.sin_addr), ntohs(cin.sin_port),newfd);
break;
}
printf("[%s : %d] newfd = %d : %s\n", inet_ntoa(cin.sin_addr), ntohs(cin.sin_port),newfd, buf);
}
close(sfd);
close(newfd);
return 0;
}
运行结果


边栏推荐
- Keithley DMM7510 accurate measurement of ultra-low power consumption equipment all kinds of operation mode power consumption
- 娄底植物细胞实验室建设基本组成要点
- 想问下大佬们 ,cdc oracle初始化一张300万的表任务运行着后面就这个错 怎么解决哇
- Nanodlp v2.2/v3.0 light curing circuit board, connection method of mechanical switch/photoelectric switch/proximity switch and system state level setting
- 矩阵键盘&基于51(UcosII)计算器小项目
- Open Office XML 格式里如何描述多段具有不同字体设置的段落
- es6-promise对象详解
- 数字藏品,“赌”字当头
- 协程与任务
- 【数字IC验证进阶】SoC系统验证和IP模块验证的区别及侧重点分析
猜你喜欢
随机推荐
协程与任务
bgp dual plane experiment routing strategy to control traffic
Have you guys encountered this problem?MySQL 2.2 and 2.3-SNAPSHOT are like this, it seems to be
娄底污水处理厂实验室建设管理
11 + chrome advanced debugging skills, learn to direct efficiency increases by 666%
How to describe multiple paragraphs with different font settings in Open Office XML format
Import other custom namespaces in C#
一种能让大型数据聚类快2000倍的方法,真不戳
Wirshark common operations and tcp three-way handshake process example analysis
BEVDet4D: Exploit Temporal Cues in Multi-camera 3D Object Detection Paper Notes
鸿蒙开发从hello world开始
iTextSharp操作PDF
海外邮件发送指南(二)
Prada, big show?In the yuan in the universe that!
Real-time data warehouse practice of Baidu user product flow and batch integration
【数字IC验证进阶】SoC系统验证和IP模块验证的区别及侧重点分析
Codeforces Round #276 (Div. 1) D. Kindergarten
Inventory of Loudi Agricultural Products Inspection Laboratory Construction Guidelines
Network Saboteur
22家!北京昌平区通报存在食品安全问题餐饮服务企业









