mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-16 23:15:37 +00:00
fixed bug #34057 socklen_t should be a typedef
This commit is contained in:
parent
2fe1af0d05
commit
e2cdf0d39d
@ -21,6 +21,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)
|
||||
|
||||
|
@ -62,8 +62,10 @@ struct sockaddr {
|
||||
char sa_data[14];
|
||||
};
|
||||
|
||||
#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…
Reference in New Issue
Block a user