This structure contains an IP address. It uses this structure to specify the IP addresses of various servers associated with an entry in a RAS phone book.
At a Glance
Header file: | Ras.h |
Windows CE versions: | 1.0 and later |
Syntax
typedef struct RASIPADDR {
BYTE a;
BYTE b;
BYTE c;
BYTE d;
} RASIPADDR;
Members
a, b, c, and d
These members specify the value of the corresponding location in the "a.b.c.d" IP address.
Remarks
In Windows CE the order of the a, b, c, and d members are transposed to d, c, b, and a. Use the htonl function to reverse the byte order.
See Also