IPRcvBuf
This structure represents one buffer in a chain of buffers that corresponds to an IP packet.
typedef struct {
struct IPRcvBuf *ipr_next;
uint ipr_reserved1;
uchar *ipr_buffer;
uint ipr_size;
uint ipr_reserved2;
} IPRcvBuf;
Members
- ipr_next
Pointer to an IPRcvBuf structure that represents the next buffer in the chain of buffers. - ipr_reserved1
Reserved. - ipr_buffer
Pointer to the buffer. - ipr_size
Unsigned integer that specifies the size of the buffer. - ipr_reserved2
Reserved.
Remarks
NAT editors should not modify fields in this structure directly. Instead, NAT editors should call the EditSession function to modify IP packet data.
Requirements
| Runs on | Versions | Defined in | Include | Link to |
|---|---|---|---|---|
| Windows CE OS | 3.0 and later | Natedit.h | Natedit.h | Coredll.dll |
See Also
Last updated on Tuesday, July 13, 2004
© 1992-2000 Microsoft Corporation. All rights reserved.