mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-06 20:33:02 +00:00
- Support for FreeBSD _SOCKLEN_T_DECLARED
This commit is contained in:
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user