关于IP地址的几个函数

NAME
       inet_aton,    inet_addr,   inet_network,   inet_ntoa,   inet_makeaddr,
       inet_lnaof, inet_netof - Internet address manipulation routines

SYNOPSIS
       #include <sys/socket.h>
       #include <netinet/in.h>
       #include <arpa/inet.h>

       int inet_aton(const char *cp, struct in_addr *inp);

       in_addr_t inet_addr(const char *cp);

       in_addr_t inet_network(const char *cp);

       char *inet_ntoa(struct in_addr in);

       struct in_addr inet_makeaddr(int net, int host);

       in_addr_t inet_lnaof(struct in_addr in);

       in_addr_t inet_netof(struct in_addr in);

DESCRIPTION
       inet_aton() converts the Internet host address cp  from the  standard
       numbers-and-dots notation into binary data and stores it in the struc-
       ture that inp points to. inet_aton returns nonzero if the  address  is
       valid, zero if not.

       The  inet_addr() function  converts the Internet host address cp from
       numbers-and-dots notation into binary data in network byte order.   If
       the  input  is invalid, INADDR_NONE (usually -1) is returned.  This is
       an obsolete interface to inet_aton, described immediately above; it is
       obsolete   because  -1  is  a  valid  address  (255.255.255.255),  and
       inet_aton provides a cleaner way to indicate error return.

       The inet_network() function extracts the network number in  host byte
       order  from the address cp in numbers-and-dots notation. If the input
       is invalid, -1 is returned.

       The inet_ntoa() function converts the Internet host address  in given
       in  network  byte order to a string in standard numbers-and-dots nota-
       tion.  The string is returned in a statically allocated buffer, which
       subsequent calls will overwrite.

       The inet_makeaddr() function makes an Internet host address in network
       byte order by combining the network number net with the local  address
       host in network net, both in local host byte order.

       The  inet_lnaof()  function returns the local host address part of the
       Internet address in.  The local host address is returned in local host
       byte order.

       The  inet_netof()  function  returns  the  network  number part of the
       Internet Address in.  The network number is  returned  in  local host
       byte order.

       The   structure in_addr as  used  in  inet_ntoa(),  inet_makeaddr(),
       inet_lnoaf() and inet_netof() is defined in netinet/in.h as:

      struct in_addr {
      unsigned long int s_addr;
      }

       Note that on the i80x86 the host byte order is Least Significant Byte
       first,  whereas the  network  byte order, as used on the Internet, is
       Most Significant Byte first.

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值