我正在尝试使用 C 中的 TCP 套接字编程实现客户端-服务器程序通信。它位于两台安装了 linux OS 的 64 位机器之间。我想在两个进程之间传输一个 c-struct。
为此,我尝试使用一个包 - unpack() 功能。
请考虑以下代码片段
/*---------------------------------------------------------
on the sending side I have:
---------------------------------------------------------*/
struct packet {
int64_t x;
int64_t y;
int64_t q[maxSize];
} __attribute__((packed));
int main(void)
{
// build packet
struct packet pkt;
pkt.x = htonl(324);
pkt.y = htonl(654);
int i;
for(i = 0; i< maxSize; i++){
pkt.q[i] = i; **// I also try pkt.q[i] = htonl(i);**
}
// and then do the send
}
/*-----------------------------------------------------------------------------
in the receiving side:
-----------------------------------------------------------------------------*/
struct packet {
int64_t x;
int64_t y;
int64_t q[maxSize];
} __attribute__((packed));
static void decodePacket (uint8_t *recv_data, size_t recv_len)
{
// checking size
if (recv_len < sizeof(struct packet)) {
fprintf(stderr, "received too little!");
return;
}
struct packet *recv_packet = (struct packet *)recv_data;
int64_t x = ntohl(recv_packet->x);
int64_t y = ntohl(recv_packet->y);
int i;
printf("Decoded: x=%"PRIu8" y=%"PRIu32"\n", x, y);
for(i=0;i<maxSize;i++){
**//int64_t res = ntohl(recv_packet->q[i]); I also try to print res**
printf("%"PRIu32"\n" , recv_packet->q[i]);
}
}
int main(int argc, char *argv[]){
// receive the data and try to call decodePacket()
int8_t *recv_data = (int8_t *)&buf; //buf is the data received
size_t recv_len = sizeof(buf);
**decode_packet(recv_data, recv_len);**
}
//-----------------------------------------------------------------------------
现在的问题是我在结构中正确接收 x 和 y 的值,但是对于结构中的数组 q 我收到一个奇怪的数字,可能是内存占用值,(我尝试使用 memset() 填充在从另一端接收数据之前按零排列,在这种情况下,接收到全零的值)
我不明白为什么我没有收到 struct 中数组的正确值。
请注意,我在放入 struct 之前填充数组时尝试使用和不使用 htonl(),另一方面:在从 struct 解码数组时使用和不使用 ntohl()
任何帮助将不胜感激,