inet_addr function winsock

int inet_addr(
  1. Pointer<Utf8> cp
)

The inet_addr function converts a string containing an IPv4 dotted-decimal address into a proper address for the IN_ADDR structure.

unsigned long inet_addr(
  const char *cp
);

Implementation

int inet_addr(Pointer<Utf8> cp) => _inet_addr(cp);