linux系统编程(十③)RK3568 socket之 TCP 服务器的实现【更新客户端断开重连依旧可以收发】

这里对上一篇:https://blog.csdn.net/u012507643/article/details/153483336?spm=1011.2124.3001.6209

服务器编程再客户端断开重连后不能响应的解决办法

直接上程序【这里解决的思路还是和tcp客户端连接服务器的方式一样,用MSG_PEEK去看下recv】

复制代码
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <linux/tcp.h>
#include <unistd.h>
#include <string.h>
#include <arpa/inet.h>
#include <errno.h>




int main(int argc, char *argv[])
{
    int fd, client_fd;
    struct sockaddr_in s;
    struct sockaddr_in c;
    int len = sizeof(c), rlen = 0;
    char rx_buf[1024] = {0};

    fd = socket(AF_INET, SOCK_STREAM, 0);
    if (fd < 0)
    {
        printf("create socekt failed\n");
        return 1;
    }

    s.sin_family = AF_INET;
    s.sin_port = htons(8089);
    //s.sin_addr.s_addr = INADDR_ANY;
    inet_pton(AF_INET, "192.168.31.96", &s.sin_addr);
    bind(fd, (const struct sockaddr *)&s, sizeof(s));

    printf("start listen\n");
    if (listen(fd, 10) < 0) {
        printf("listen failed\n");
        return 1;
    }

    printf("server ip:192.168.31.96,port:8089\n");

    /* 返回连接上来的套接字 */
    client_fd = accept(fd, (struct sockaddr *)&c, &len);
    if (client_fd < 0)
    {
        printf("sccept failed\n");
        return 1;
    }
    printf("new client %d connected\n", client_fd);
    while(1)
    {
        int ret = recv(client_fd, rx_buf, sizeof(rx_buf), MSG_PEEK);
        if ((ret > 0) || (ret == -1 && errno == EAGAIN))
        {
            rlen = recvfrom(client_fd, rx_buf, sizeof(rx_buf), MSG_DONTWAIT, (struct sockaddr *)&c, &len);
            if (rlen > 0)
            {
                printf("recv[%s:%d] data:%s,len=%d\n", inet_ntoa(c.sin_addr), ntohs(c.sin_port), rx_buf, rlen);
                send(client_fd, rx_buf, rlen, MSG_DONTWAIT);
                memset(rx_buf, 0, sizeof(rx_buf));
            }
        } else {
            printf("clinet %d disconnectted\n", client_fd);
            close(client_fd);
            len = sizeof(c);
            /* 返回连接上来的套接字 */
            client_fd = accept(fd, (struct sockaddr *)&c, &len);
            if (client_fd < 0)
            {
                printf("sccept failed\n");
                return 1;
            } else {
                printf("new clinet fd=%d connectted\n", client_fd);
            }
        }
    }

    close(fd);
    close(client_fd);
    return 0;
}
相关推荐
Rockbean1 天前
用40行代码搭建自己的无服务器OCR
服务器·python·deepseek
茶杯梦轩1 天前
CompletableFuture 在 项目实战 中 创建异步任务 的核心优势及使用场景
服务器·后端·面试
崔小汤呀1 天前
最全的docker安装笔记,包含CentOS和Ubuntu
linux·后端
何中应1 天前
vi编辑器使用
linux·后端·操作系统
何中应1 天前
Linux进程无法被kill
linux·后端·操作系统
何中应1 天前
rm-rf /命令操作介绍
linux·后端·操作系统
何中应1 天前
Linux常用命令
linux·操作系统
葛立国1 天前
从 / 和 /dev 说起:Linux 文件系统与挂载点一文理清
linux
海天鹰2 天前
【免费】PHP主机=域名+解析+主机
服务器
哇哈哈20212 天前
信号量和信号
linux·c++