如何发送可变长度的结构

如何发送可变长度的结构

本文介绍了如何发送可变长度的结构的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个结构:

I have a structure:

typedef struct{
    int flags;/*the type of message*/
    int length;/*the length of message*/
    void* message;/*the message*/
}Message;



消息的长度是可变的.例如:



The length of message is variable.For example:

Message msg;
msg.flags=0;
char buf[]="abcdef";
msg.length=strlen(buf);
msg.message=buf;



如何使用套接字将结构从客户端发送到服务器?有人帮我!或给我一些建议.



How can i send the structure from client to the server with socket? Someone help me!or give me some advisements.

推荐答案


这篇关于如何发送可变长度的结构的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 20:29