Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

BSDµC/TCPIP FunctionsDescription
htonl

NET_UTIL_HOST_TO_NET_32

Convert 32-bit integer values from network-order to CPU host-order.
htons() NET_UTIL_HOST_TO_NET_16() Convert 16-bit integer values from network-order to CPU host-order.
ntohl() NET_UTIL_NET_TO_HOST_32() Convert 32-bit integer values from network-order to CPU host-order.
ntohs() NET_UTIL_NET_TO_HOST_16() Convert 16-bit integer values from network-order to CPU host-order.
inet_addr() NetASCII_Str_to_IPv4() Convert a string of an IPv4 address in dotted-decimal notation to an IPv4 address in host-order.
inet_aton() NetASCII_Str_to_IPv4() Convert an IPv4 address in ASCII dotted-decimal notation to a network protocol IPv4 address in network-order.
inet_ntoa() NetASCII_IPv4_to_Str()  Convert an IPv4 address in host-order into an IPv4 dotted-decimal notation ASCII string.

Socket

...

Option Function

It is possible to configure many options on a socket, with the followings function you could configure majority of socket's option but some other option can be accessed using some specific API, please refer to Socket Options section. 

...