mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
Fix build on VOS: socklen_t is needed for rep_inet_ntop: move it up.
Michael
This commit is contained in:
parent
71f05a1f96
commit
7b98620ef1
@ -83,6 +83,11 @@
|
||||
#include <stropts.h>
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_SOCKLEN_T
|
||||
#define HAVE_SOCKLEN_T
|
||||
typedef int socklen_t;
|
||||
#endif
|
||||
|
||||
#ifdef REPLACE_INET_NTOA
|
||||
/* define is in "replace.h" */
|
||||
char *rep_inet_ntoa(struct in_addr ip);
|
||||
@ -245,11 +250,6 @@ void rep_freeifaddrs(struct ifaddrs *);
|
||||
#define HOST_NAME_MAX 256
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_SOCKLEN_T
|
||||
#define HAVE_SOCKLEN_T
|
||||
typedef int socklen_t;
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_SA_FAMILY_T
|
||||
#define HAVE_SA_FAMILY_T
|
||||
typedef unsigned short int sa_family_t;
|
||||
|
Loading…
Reference in New Issue
Block a user