当前位置:   article > 正文

Linux | C | UDP_linux c udp

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 (可选)
|
+-------------------------------------+

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

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

例如:

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;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/187187
推荐阅读
相关标签
  

闽ICP备14008679号