Linux | C | UDP

UDP

简单介绍,IP属于网络层,然后属于其之上的传输层
无连接,没有三次握手、挥手
对数据的稳定性 可靠性要求不高
所以在socket套接字实现UDP 的数据接受或者请求不需要 绑定和接受连接

数据结构为 (最小为8字节,最大为65535字节)
头部 + 数据实体(数据实体是可以为空的,)
头部数据大小为8字节
源ip 目标ip UDP长度 校验码

UDP Header:

 0      7 8     15 16    23 24    31  
+--------+--------+--------+--------+---------
|     Source Port      | Destination Port |
+--------+--------+--------+--------+----------
|     Length         |    Checksum      |
+--------+--------+--------+--------+----------
|
|        Data (可选)
|
+-------------------------------------+

提示:这里可以添加技术概要

例如:

openAI 的 GPT 大模型的发展历程。

绑定套接字获取UDP数据

创建
设置监听IP 以及端口号
获取端口号上的UDP数据报

注意由于是不可靠传输,所以不需要 listen 和 accept

解析UDP数据

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <netinet/ip.h>
#include <netinet/udp.h>

void parse_udp_packet(const unsigned char *packet, int length) {
    struct iphdr *ip_header = (struct iphdr *)packet;
    struct udphdr *udp_header = (struct udphdr *)(packet + sizeof(struct iphdr));
    unsigned char *data = (unsigned char *)(packet + sizeof(struct iphdr) + sizeof(struct udphdr));
    int data_length = length - sizeof(struct iphdr) - sizeof(struct udphdr);

    // 解析IP头部信息
    char src_ip[INET_ADDRSTRLEN];
    char dst_ip[INET_ADDRSTRLEN];
    inet_ntop(AF_INET, &(ip_header->saddr), src_ip, INET_ADDRSTRLEN);
    inet_ntop(AF_INET, &(ip_header->daddr), dst_ip, INET_ADDRSTRLEN);
    printf("Source IP: %s\n", src_ip);
    printf("Destination IP: %s\n", dst_ip);

    // 解析UDP头部信息
    unsigned short src_port = ntohs(udp_header->source);
    unsigned short dst_port = ntohs(udp_header->dest);
    printf("Source Port: %u\n", src_port);
    printf("Destination Port: %u\n", dst_port);

    // 打印数据
    printf("Data: ");
    for (int i = 0; i < data_length; ++i) {
        printf("%02X ", data[i]);
    }
    printf("\n");
}

int main() {
    // 示例数据包(16进制表示)
    unsigned char packet[] = {
        0x45, 0x00, 0x00, 0x30, 0x00, 0x01, 0x00, 0x00, 0x40, 0x11, 0xD5, 0x71, 0xC0, 0xA8, 0x01, 0x02,  // IP头部
        0xC0, 0xA8, 0x01, 0x01, 0x00, 0x7B, 0x04, 0xD2, 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x1C, 0x68, 0x65,  // UDP头部 + 数据
        0x6C, 0x6C, 0x6F, 0x2C, 0x20, 0x55, 0x44, 0x50
    };
    int packet_length = sizeof(packet);

    // 解析UDP数据包
    parse_udp_packet(packet, packet_length);

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值