mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-24 00:06:32 +01:00
- Support for FreeBSD _SOCKLEN_T_DECLARED
This commit is contained in:
parent
43655f46b0
commit
394c56f854
1 changed files with 2 additions and 1 deletions
|
|
@ -227,7 +227,8 @@ int net_accept( int bind_fd, int *client_fd, void *client_ip )
|
|||
{
|
||||
struct sockaddr_in client_addr;
|
||||
|
||||
#if defined(__socklen_t_defined) || defined(_SOCKLEN_T)
|
||||
#if defined(__socklen_t_defined) || defined(_SOCKLEN_T) || \
|
||||
defined(_SOCKLEN_T_DECLARED)
|
||||
socklen_t n = (socklen_t) sizeof( client_addr );
|
||||
#else
|
||||
int n = (int) sizeof( client_addr );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue