我是 C 编程的新手,我正在测试一些代码,在这些代码中我接收和处理格式如下的 UDP 数据包:
UINT16 port1
UINT16 port2
本次测试对应的值为:
6005
5555
如果我打印整个数据包缓冲区,我会得到如下信息:
u^W³^U><9e>^D
所以我认为我只需要打破它并将其处理为unsigned int
16 个字节。所以我尝试了这样的事情:
int l = 0;
unsigned int *primaryPort = *(unsigned int) &buffer[l];
AddToLog(logInfo, "PrimaryPort: %u\n", primaryPort);
l += sizeof(primaryPort);
unsigned int *secondaryPort = *(unsigned int) &buffer[l];
AddToLog(logInfo, "SecondaryPort: %u\n", secondaryPort);
l += sizeof(secondaryPort);
但是我得到了错误的 8 位数字。
我什至尝试了另一种方法,例如跟随,但也得到了错误的数字。
int l = 0;
unsigned char primaryPort[16];
snprintf(primaryPort, sizeof(primaryPort), "%u", &buffer[l]);
AddToLog(logInfo, "PrimaryPort: %d\n", primaryPort);
l += sizeof(primaryPort);
unsigned char secondaryPort[16];
snprintf(secondaryPort, sizeof(secondaryPort), "%u", &buffer[l]);
AddToLog(logInfo, "SecondaryPort: %d\n", secondaryPort);
l += sizeof(secondaryPort);
我做错了什么?另外,为什么我必须释放 char 字符串变量,但不需要释放 int 变量?