mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-01 12:00:53 +00:00
Fixed bug #27994: incorrect define for freeaddrinfo(addrinfo)
This commit is contained in:
parent
70b05c8096
commit
6f38b63a47
@ -46,6 +46,9 @@ HISTORY
|
|||||||
|
|
||||||
++ Bugfixes:
|
++ Bugfixes:
|
||||||
|
|
||||||
|
2009-11-11: Simon Goldschmidt
|
||||||
|
* netdb.h: Fixed bug #27994: incorrect define for freeaddrinfo(addrinfo)
|
||||||
|
|
||||||
2009-10-30: Simon Goldschmidt
|
2009-10-30: Simon Goldschmidt
|
||||||
* opt.h: Increased default value for TCP_MSS to 536, updated default
|
* opt.h: Increased default value for TCP_MSS to 536, updated default
|
||||||
value for TCP_WND to 4*TCP_MSS to keep delayed ACK working.
|
value for TCP_WND to 4*TCP_MSS to keep delayed ACK working.
|
||||||
|
@ -103,7 +103,7 @@ int lwip_getaddrinfo(const char *nodename,
|
|||||||
#define gethostbyname(name) lwip_gethostbyname(name)
|
#define gethostbyname(name) lwip_gethostbyname(name)
|
||||||
#define gethostbyname_r(name, ret, buf, buflen, result, h_errnop) \
|
#define gethostbyname_r(name, ret, buf, buflen, result, h_errnop) \
|
||||||
lwip_gethostbyname_r(name, ret, buf, buflen, result, h_errnop)
|
lwip_gethostbyname_r(name, ret, buf, buflen, result, h_errnop)
|
||||||
#define freeaddrinfo(addrinfo) lwip_freeaddrinfo(a)
|
#define freeaddrinfo(addrinfo) lwip_freeaddrinfo(addrinfo)
|
||||||
#define getaddrinfo(nodname, servname, hints, res) \
|
#define getaddrinfo(nodname, servname, hints, res) \
|
||||||
lwip_getaddrinfo(nodname, servname, hints, res)
|
lwip_getaddrinfo(nodname, servname, hints, res)
|
||||||
#endif /* LWIP_COMPAT_SOCKETS */
|
#endif /* LWIP_COMPAT_SOCKETS */
|
||||||
|
Loading…
Reference in New Issue
Block a user