Files
stopwait_chat_ipv6/common.h
2025-12-26 14:54:01 +08:00

18 lines
296 B
C

#ifndef COMMON_H
#define COMMON_H
#include <stdint.h>
#define DATA_LEN 512
#define TYPE_DATA 1
#define TYPE_ACK 2
typedef struct {
uint8_t type; // DATA or ACK
uint8_t seq; // 序号 0 / 1
uint16_t length; // 数据长度
char data[DATA_LEN];
} packet_t;
#endif