- 论坛徽章:
- 0
|
我在用struct定义包结构的时候,发现发送出去的包,并不是按照我定义字节数量发送出去,总是因为对齐或多或少字节。好麻烦!
如下代码:
typedef unsigned char UCHAR;
typedef unsigned short USHORT;
typedef unsigned long ULONG;
struct SSX_REQ_HDR_NEGO
{
UCHAR WordCount; /* Count of parameter words = 13 */
UCHAR AndXCommand; /* Secondary (X) command; 0xFF = none */
UCHAR Reserved1;
UCHAR AndXOffset[2]; /* Offset to next command WordCount */
UCHAR MaxBufferSize[2]; /* Client's maximum buffer size */
UCHAR MaxMpxCount[2]; /* Actual maximum multiplexed pending requests */
UCHAR VcNumber[2]; /* 0=first (only),nonzero=additional VC number */
UCHAR SessionKey[4]; /* Session key (valid iff VcNumber != 0) */
UCHAR BlobLength[2];
UCHAR Reserved2[4]; /* must be 0 */
UCHAR Capabilities[4]; /* Client capabilities */
UCHAR ByteCount[2]; /* Count of data bytes; min = 0 */
UCHAR Other[95];
//STRING NativeOS[]; /* Client's native operating system, Unicode */
//STRING NativeLanMan[]; /* Client's native LAN Manager type, Unicode */
};
//struct SSX_REQ_HDR
//{
// UCHAR WordCount; /* Count of parameter words = 13 */
// UCHAR AndXCommand; /* Secondary (X) command; 0xFF = none */
// UCHAR AndXReserved; /* Reserved (must be 0) */
// USHORT AndXOffset; /* Offset to next command WordCount */
// USHORT MaxBufferSize; /* Client's maximum buffer size */
// USHORT MaxMpxCount; /* Actual maximum multiplexed pending requests */
// USHORT VcNumber; /* 0=first (only),nonzero=additional VC number */
// ULONG SessionKey; /* Session key (valid iff VcNumber != 0) */
// USHORT BlobLength;
// ULONG Reserved; /* must be 0 */
// ULONG Capabilities; /* Client capabilities */
// USHORT ByteCount:; /* Count of data bytes; min = 0 */
// UCHAR Other[95];
// //STRING NativeOS[]; /* Client's native operating system, Unicode */
// //STRING NativeLanMan[]; /* Client's native LAN Manager type, Unicode */
//};
|
这个程序如果用下面注释掉的结构体的话,就会在AndXOffset和MaxBufferSize之间出现多个0x00,如果用第一个结构体的话,就不回有问题!难道只能用unsigned char一个个定义啊!
我用了下域定义,可是程序报错,请问下,怎么解决这个问题!????? |
|