Browse Source

fixed bug #34057 socklen_t should be a typedef

STABLE-2_1_x
Simon Goldschmidt 15 years ago
parent
commit
2e69b54a4f
  1. 3
      CHANGELOG
  2. 6
      src/include/lwip/sockets.h

3
CHANGELOG

@ -41,6 +41,9 @@ HISTORY
++ Bugfixes:
2011-08-24: Simon Goldschmidt
* sockets.h: fixed bug #34057 socklen_t should be a typedef
2011-08-24: Simon Goldschmidt
* pbuf.c: fixed bug #34112 Odd check in pbuf_alloced_custom (typo)

6
src/include/lwip/sockets.h

@ -78,8 +78,10 @@ struct sockaddr {
#endif /* LWIP_IPV6 */
};
#ifndef socklen_t
# define socklen_t u32_t
/* If your port already typedef's socklen_t, define SOCKLEN_T_DEFINED
to prevent this code from redefining it. */
#if !defined(socklen_t) && !defined(SOCKLEN_T_DEFINED)
typedef u32_t socklen_t;
#endif
/* Socket protocol types (TCP/UDP/RAW) */

Loading…
Cancel
Save