Microsoft Windows CE 3.0  

IN_ADDR

Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

This structure is the IP address component of the SOCKADDR_INstructure. It is in big-endian network byte order.

typedef struct in_addr {
union {
  struct{
  unsigned char s_b1,
   s_b2,
   s_b3,
   s_b4;
   } S_un_b;
  struct {
unsigned short s_w1,
   s_w2;
   } S_un_w;
    unsigned long S_addr;
  } S_un;
} IN_ADDR;

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 1.0 and later Winsock.h    
Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

SOCKADDR_IN