Ignore:
Timestamp:
Nov 18, 2016, 2:58:30 PM (7 years ago)
Author:
coas-nagasima
Message:

uIPを更新
プロジェクトファイルを更新

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uKadecot/trunk/uip/net/ip/uiplib.h

    r157 r262  
    5353 *
    5454 * This function takes a textual representation of an IP address in
    55  * the form a.b.c.d and converts it into a 4-byte array that can be
    56  * used by other uIP functions.
     55 * the form a.b.c.d for IPv4 or a:b:c:d:e:f:g:h for IPv6 and converts
     56 * it into a numeric IP address representation that can be used by
     57 * other uIP functions.
    5758 *
    5859 * \param addrstr A pointer to a string containing the IP address in
    5960 * textual form.
    6061 *
    61  * \param addr A pointer to a 4-byte array that will be filled in with
     62 * \param addr A pointer to a uip_ipaddr_t that will be filled in with
    6263 * the numerical representation of the address.
    6364 *
     
    6566 * \retval Non-zero If the IP address was parsed.
    6667 */
    67 unsigned char uiplib_ipaddrconv(char *addrstr, unsigned char *addr);
     68int uiplib_ipaddrconv(const char *addrstr, uip_ipaddr_t *addr);
    6869
    6970/** @} */
Note: See TracChangeset for help on using the changeset viewer.