day 2

该代码示例展示了C语言实现的TCP/IP通信,包括服务器端创建套接字、设置端口重用、监听连接、接收客户端数据并回应,以及客户端建立连接、发送数据和接收服务器响应的过程。
摘要由CSDN通过智能技术生成
#include <arpa/inet.h>
#include <netinet/in.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
#define ERR_MSG(msg)                            \
    do {                                        \
        fprintf(stderr, "line = %d", __LINE__); \
        perror(msg);                            \
    } while (0);

#define IP "192.168.0.112"

int main(int argc, char const* argv[])
{
    int sfd = socket(AF_INET, SOCK_STREAM, 0);
    if (sfd < 0) {
        ERR_MSG("socket");
        return -1;
    }
    printf("socket successful__%d__", __LINE__);
    // 快速释放
    int reuse = 1;
    if (setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse)) < 0) {
        ERR_MSG("setsockopt error");
        return -1;
    }
    printf("允许端口快速重用\n");
    // 绑定
    struct sockaddr_in sin;
    sin.sin_family = AF_INET;
    sin.sin_port = htons(6366);
    sin.sin_addr.s_addr = inet_addr(IP);

    if (bind(sfd, (struct sockaddr*)&sin, sizeof(sin)) < 0) {
        ERR_MSG("bind");
        return -1;
    }
    // 监听
    if (listen(sfd, 128) < 0) {
        ERR_MSG("listen");
        return -1;
    }
    // 获取客户端信息
    struct sockaddr_in cin;
    socklen_t addrlen = sizeof(cin);
    int cfd = accept(sfd, (struct sockaddr*)&cin, &addrlen);
    if (cfd < 0) {
        ERR_MSG("accept");
        return -1;
    }
    // 获取客户端发送的内容
    char buf[1024] = { 0 };
    size_t ret = 0;
    while (1) {
        ret = recv(cfd, buf, sizeof(buf), 0);
        if (ret < 0) {
            ERR_MSG("ret");
            return -1;
        } else if (ret == 0) {
            printf("客服端下线\n");
            break;
        }

        // 发送

        strcat(buf, "*_*");
        if (send(cfd, buf, sizeof(buf), 0) < 0) {
            ERR_MSG("send");
            return -1;
        }
    }

    close(sfd);
    close(cfd);
    return 0;
}

客户端

#include <arpa/inet.h>
#include <netinet/in.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
#define ERR_MSG(msg)                            \
    do {                                        \
        fprintf(stderr, "line = %d", __LINE__); \
        perror(msg);                            \
    } while (0);
#define IP "192.168.0.112"
int main(int argc, char const* argv[])
{
    int sfd = socket(AF_INET, SOCK_STREAM, 0);
    if (sfd < 0) {
        ERR_MSG("sfd");
        return -1;
    }
    struct sockaddr_in ain;
    ain.sin_family = AF_INET;
    ain.sin_port = htons(6366);
    ain.sin_addr.s_addr = inet_addr(IP);

    socklen_t addrlen = sizeof(ain);
    if (connect(sfd, (struct sockaddr*)&ain, addrlen) < 0) {
        ERR_MSG("connect");
        return -1;
    }
    printf("connect successful");
    char buf[1024] = { 0 };
    while (1) {
        memset(buf, 0, sizeof(buf));
        printf("请输入>>");
        fgets(buf, sizeof(buf), stdin);
        buf[strlen(buf) - 1] = '\0';
        if (send(sfd, buf, sizeof(buf), 0) < 0) {
            ERR_MSG("send");
            return -1;
        }
        // 接收服务器的回复
        bzero(buf, sizeof(buf));
        size_t ret = recv(sfd, buf, sizeof(buf), 0);
        if (ret < 0) {
            ERR_MSG("ret");
            return -1;
        } else if (ret == 0) {
            printf("服务器下线\n");
            return -1;
        }
        printf("%s\n", buf);
    }
    close(sfd);
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值