search for: have_inet_ntop

Displaying 20 results from an estimated 20 matches for "have_inet_ntop".

2002 Jan 02
3
2.5.1pre3 - Bugs in configure script / config.h.in breaks build.
Compaq C 6.5 OpenVMS Alpha 7.3 The config.h.in template file is missing the line: #undef HAVE_INET_NTOP This caused the resulting CONFIG.H on OpenVMS to not test for the existance of the inet_ntop() routine in it's system tables. This configure bug exposed that the prototype in inet_ntop() in RSYNC.H does not match the one in the Compaq C header files. This stopped the build. I am using a...
2001 May 18
0
patch to change sprintf to snprintf in inet_ntop.c for SunOS4
...doesn't appear anywhere in the binaries on SunOS4 or Solaris. Can the file just be deleted? - Dave Dykstra *** inet_ntop.c.O Fri May 18 15:00:35 2001 --- inet_ntop.c Fri May 18 15:01:00 2001 *************** *** 16,22 **** * SOFTWARE. */ ! #include "config.h" #ifndef HAVE_INET_NTOP --- 16,22 ---- * SOFTWARE. */ ! #include "includes.h" #ifndef HAVE_INET_NTOP *************** *** 104,110 **** static const char fmt[] = "%u.%u.%u.%u"; char tmp[sizeof "255.255.255.255"]; ! if (sprintf(tmp, fmt, src[0], src[1], src[2], src[...
2008 Oct 20
2
[PATCH] Compilation of tftp-hpa's Git HEAD with no IPv6, and misc
...const char *gai_strerror(int); #define EAI_MEMORY -10 /* Memory allocation failure. */ #endif #ifndef EAI_SYSTEM -#define EAI_SYSTEM -11 /* System error returned in rrno'. */ +#define EAI_SYSTEM -11 /* System error returned in `errno'. */ #endif #endif -#ifndef HAVE_INET_NTOP -const char *inet_ntop(int, const void *, char *, socklen_t); #ifndef INET6_ADDRSTRLEN -#define INET6_ADDRSTRLEN 48 +#define INET6_ADDRSTRLEN 46 #endif + +#ifndef HAVE_INET_NTOP +const char *inet_ntop(int, const void *, char *, socklen_t); #endif /* tftp-hpa version and configuration strings *...
2002 Nov 17
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (update)
...02 @@ -330,6 +330,10 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2 #define INADDR_NONE 0xffffffff #endif +#ifndef IN_LOOPBACKNET +#define IN_LOOPBACKNET 127 +#endif + struct file_struct { unsigned flags; time_t modtime; @@ -614,7 +618,7 @@ inet_ntop(int af, const void *src, char #endif /* !HAVE_INET_NTOP */ #ifndef HAVE_INET_PTON -int isc_net_pton(int af, const char *src, void *dst); +int inet_pton(int af, const char *src, void *dst); #endif #define UNUSED(x) x __attribute__((__unused__)) ### END OF PATCHES ### Thanks PG -- Paul Green | Mail: Paul.Green@stratus.com Senior...
2002 Sep 06
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS
...02 @@ -330,6 +330,10 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2 #define INADDR_NONE 0xffffffff #endif +#ifndef IN_LOOPBACKNET +#define IN_LOOPBACKNET 127 +#endif + struct file_struct { unsigned flags; time_t modtime; @@ -614,7 +618,7 @@ inet_ntop(int af, const void *src, char #endif /* !HAVE_INET_NTOP */ #ifndef HAVE_INET_PTON -int isc_net_pton(int af, const char *src, void *dst); +int inet_pton(int af, const char *src, void *dst); #endif #define UNUSED(x) x __attribute__((__unused__)) ### END OF PATCHES ### Thanks PG -- Paul Green | Mail: Paul.Green@stratus.com Senior...
2002 Oct 14
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (resend)
...02 @@ -330,6 +330,10 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2 #define INADDR_NONE 0xffffffff #endif +#ifndef IN_LOOPBACKNET +#define IN_LOOPBACKNET 127 +#endif + struct file_struct { unsigned flags; time_t modtime; @@ -614,7 +618,7 @@ inet_ntop(int af, const void *src, char #endif /* !HAVE_INET_NTOP */ #ifndef HAVE_INET_PTON -int isc_net_pton(int af, const char *src, void *dst); +int inet_pton(int af, const char *src, void *dst); #endif #define UNUSED(x) x __attribute__((__unused__)) ### END OF PATCHES ### Thanks PG -- Paul Green | Mail: Paul.Green@stratus.com Senior...
2017 Jun 08
0
2nd try: Lots of RPC-related compile errors (conflicting types, too many arguments, ...) trying to update Samba from 3.5 to 4.6
...AVE_GETRLIMIT HAVE_GETSPNAM HAVE_GETTEXT HAVE_GETTIMEOFDAY_TZ HAVE_GETUTXENT HAVE_GETXATTR HAVE_GLOB HAVE_GRANTPT HAVE_GSSAPI HAVE_GSS_DISPLAY_STATUS HAVE_HSTRERROR HAVE_ICONV HAVE_IF_NAMETOINDEX HAVE_IMMEDIATE_STRUCTURES HAVE_INET_ATON HAVE_INET_NTOA HAVE_INET_NTOP HAVE_INET_PTON HAVE_INITGROUPS HAVE_INITIALIZE_KRB5_ERROR_TABLE HAVE_INNETGR HAVE_INOTIFY HAVE_INOTIFY_INIT HAVE_INTPTR_T HAVE_IPV6 HAVE_ISATTY HAVE_KERNEL_CHANGE_NOTIFY HAVE_KERNEL_SHARE_MODES HAVE_KRB5 HAVE_KRB5_AUTH_CON_SETUSERUSERKEY HAVE_KRB5_AUTH_CON_...
2002 Nov 20
0
[PATCH] Updated patch to rsync for Stratus VOS
...02 @@ -331,6 +331,10 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2 #define INADDR_NONE 0xffffffff #endif +#ifndef IN_LOOPBACKNET +#define IN_LOOPBACKNET 127 +#endif + struct file_struct { unsigned flags; time_t modtime; @@ -615,7 +619,7 @@ inet_ntop(int af, const void *src, char #endif /* !HAVE_INET_NTOP */ #ifndef HAVE_INET_PTON -int isc_net_pton(int af, const char *src, void *dst); +int inet_pton(int af, const char *src, void *dst); #endif #ifdef MAINTAINER_MODE ### END OF PATCH ### Thanks PG -- Paul Green | Mail: Paul.Green@stratus.com Senior Technical Consultant | Voic...
2003 Feb 11
1
Problems configuring OpenSSH 3.5p1 on Sol 5.8
...define HAVE_FCHMOD 1 #define HAVE_FCHOWN 1 #define HAVE_FREEADDRINFO 1 #define HAVE_GAI_STRERROR 1 #define HAVE_GETADDRINFO 1 #define HAVE_GETCWD 1 #define HAVE_GETNAMEINFO 1 #define HAVE_GETOPT 1 #define HAVE_GETRLIMIT 1 #define HAVE_GETRUSAGE 1 #define HAVE_GLOB 1 #define HAVE_INET_NTOA 1 #define HAVE_INET_NTOP 1 #define HAVE_INNETGR 1 #define HAVE_MEMMOVE 1 #define HAVE_MMAP 1 #define HAVE_REALPATH 1 #define HAVE_RECVMSG 1 #define HAVE_RRESVPORT_AF 1 #define HAVE_SENDMSG 1 #define HAVE_SETEGID 1 #define HAVE_SETEUID 1 #define HAVE_SETGROUPS 1 #define HAVE_SETREUID 1 #define HAVE_SETRLIMIT 1 #define HAVE_...
2005 Sep 19
1
ssh hangs or gives Segmentation fault
..._GSSAPI_GENERIC_H */ /* #undef HAVE_GSSAPI_GSSAPI_GENERIC_H */ /* #undef HAVE_GSSAPI_GSSAPI_H */ /* #undef HAVE_GSSAPI_GSSAPI_KRB5_H */ /* #undef HAVE_GSSAPI_H */ /* #undef HAVE_GSSAPI_KRB5_H */ /* #undef HAVE_IAF_H */ /* #undef HAVE_IA_H */ #define HAVE_INET_ATON 1 #define HAVE_INET_NTOA 1 #define HAVE_INET_NTOP 1 #define HAVE_INNETGR 1 #define HAVE_INTTYPES_H 1 #define HAVE_IN_ADDR_T 1 #define HAVE_LASTLOG_H 1 /* #undef HAVE_LIBBSM */ /* #undef HAVE_LIBCRYPT */ /* #undef HAVE_LIBDL */ #define HAVE_LIBGEN_H 1 /* #undef HAVE_LIBIAF */ #define HAVE_LIBNSL 1 /* #undef HAVE_LIBPAM */ /* #undef HAVE_LIBSECTOK *...
2019 Oct 29
0
auth logging or auditing
...HAVE_GSS_KRB5_IMPORT_CRED ?? HAVE_GSS_OID_EQUAL ?? HAVE_GSS_WRAP_IOV ?? HAVE_HSTRERROR ?? HAVE_HTTPCONNECT ?? HAVE_HTTPCONNECTENCRYPT ?? HAVE_H_ERRNO ?? HAVE_ICONV ?? HAVE_ICONV_OPEN ?? HAVE_IFACE_GETIFADDRS ?? HAVE_IF_NAMETOINDEX ?? HAVE_IMMEDIATE_STRUCTURES ?? HAVE_INET_ATON ?? HAVE_INET_NTOA ?? HAVE_INET_NTOP ?? HAVE_INET_PTON ?? HAVE_INITGROUPS ?? HAVE_INITIALIZE_KRB5_ERROR_TABLE ?? HAVE_INITSCR ?? HAVE_INNETGR ?? HAVE_INOTIFY ?? HAVE_INOTIFY_INIT ?? HAVE_INO_T ?? HAVE_INT16_T ?? HAVE_INT32_T ?? HAVE_INT64_T ?? HAVE_INT8_T ?? HAVE_INTPTR_T ?? HAVE_IPRINT ?? HAVE_IPV6 ?? HAVE_IPV6_V6ONLY ?? HAVE_IRUSERO...
2017 Jun 08
2
2nd try: Lots of RPC-related compile errors (conflicting types, too many arguments, ...) trying to update Samba from 3.5 to 4.6
On Thu, 2017-06-08 at 10:09 +0200, awl1 via samba wrote: > Hello again, Samba experts, > > sorry for being such a pain in your necks, but I really need to get a > recent Samba version to compile, and it looks like I definitely need > your help with this. > > In the meantime, I have found that the huge number of "conflicting > types" errors for rpc_*_init(...)
2013 May 14
3
frequent tdb corruption
...HAVE_GETPWUID_R HAVE_GETRLIMIT HAVE_GETTIMEOFDAY_TZ HAVE_GLOB HAVE_GRANTPT HAVE_GSSAPI HAVE_GSS_DISPLAY_STATUS HAVE_HISTORY_LIST HAVE_HSTRERROR HAVE_ICONV HAVE_IFACE_GETIFADDRS HAVE_IF_NAMETOINDEX HAVE_IMMEDIATE_STRUCTURES HAVE_INET_ATON HAVE_INET_NTOA HAVE_INET_NTOP HAVE_INET_PTON HAVE_INITGROUPS HAVE_INITIALIZE_KRB5_ERROR_TABLE HAVE_INNETGR HAVE_INTPTR_T HAVE_ISATTY HAVE_KRB5 HAVE_KRB5_ADDRESSES HAVE_KRB5_AUTH_CON_SETKEY HAVE_KRB5_CRYPTO HAVE_KRB5_CRYPTO_DESTROY HAVE_KRB5_CRYPTO_INIT HAVE_KRB5_C_ENCTYPE_COMPARE HAVE_K...
2006 Apr 11
0
Problem building openssh-4.3p2 under cygwin and windows XP
...VE_GETUTXENT 1 #define HAVE_GETUTXID 1 #define HAVE_GETUTXLINE 1 #define HAVE_GLOB 1 #define HAVE_GLOB_H 1 #define HAVE_HEADER_AD 1 #define HAVE_HOST_IN_UTMP 1 #define HAVE_HOST_IN_UTMPX 1 #define HAVE_ID_IN_UTMP 1 #define HAVE_ID_IN_UTMPX 1 #define HAVE_INET_ATON 1 #define HAVE_INET_NTOA 1 #define HAVE_INET_NTOP 1 #define HAVE_INT64_T 1 #define HAVE_INTXX_T 1 #define HAVE_IN_ADDR_T 1 #define HAVE_LASTLOG_H 1 #define HAVE_LIBGEN_H 1 #define HAVE_LIBZ 1 #define HAVE_LIMITS_H 1 #define HAVE_LOGIN 1 #define HAVE_LOGOUT 1 #define HAVE_LOGWTMP 1 #define HAVE_LONG_DOUBLE 1 #define HAVE_LONG_LONG 1 #define HAVE_ME...
2020 May 29
2
get_ea_dos_attribute: Cannot get attribute from EA on file .: Error = No data available
Samba 4.12.1, single server with AD+DC on Ubuntu 18.04. Filesystem: /dev/sdb1 on /home type ext4 (rw,relatime,stripe=32750,data=ordered) It all work as expected, but I occasionally get the error in subject which denies access to shares. Restarting Samba will restore functionality. What can be the cause of this problem? Thanks. [2020/05/27 18:24:35.795379, 8]
2008 Jan 08
2
[LLVMdev] Adding ClamAV to the llvm testsuite (long)
...E_GMP */ > > /* Define to 1 if you have the <grp.h> header file. */ > #define HAVE_GRP_H 1 > > /* Define to 1 if you have the <iconv.h> header file. */ > /* #define HAVE_ICONV_H 1 */ > > /* Define to 1 if you have the `inet_ntop' function. */ > /* #define HAVE_INET_NTOP 1 */ > > /* Define to 1 if you have the `initgroups' function. */ > /* #define HAVE_INITGROUPS 1 */ > > /* Define to 1 if you have the <inttypes.h> header file. */ > /* #define HAVE_INTTYPES_H 1 */ > > /* in_addr_t is defined */ > /* #define HAVE_IN_ADDR_T 1 */...
2020 Jun 03
3
get_ea_dos_attribute: Cannot get attribute from EA on file .: Error = No data available
...HAVE_HISTORY_LIST HAVE_HSTRERROR HAVE_HTTPCONNECT HAVE_HTTPCONNECT2 HAVE_HTTPCONNECTENCRYPT HAVE_H_ERRNO HAVE_ICONV HAVE_ICONV_ERRNO_ILLEGAL_MULTIBYTE HAVE_ICONV_OPEN HAVE_ICU_I18N HAVE_IF_NAMETOINDEX HAVE_IMMEDIATE_STRUCTURES HAVE_INET_ATON HAVE_INET_NTOA HAVE_INET_NTOP HAVE_INET_PTON HAVE_INITGROUPS HAVE_INITIALIZE_KRB5_ERROR_TABLE HAVE_INITSCR HAVE_INNETGR HAVE_INOTIFY HAVE_INOTIFY_INIT HAVE_INO_T HAVE_INT16_T HAVE_INT32_T HAVE_INT64_T HAVE_INT8_T HAVE_INTPTR_T HAVE_IPRINT HAVE_IPV6 HAVE_IPV6_V6ONLY HAVE_IRUSERO...
2007 Dec 18
0
[LLVMdev] Adding ClamAV to the llvm testsuite (long)
Chris Lattner wrote: > One way to do this is to add a "cut down" version of the app to the > test suite. I disabled optional features in clamav-config.h > >> 2. GPL license. Chris? > > Any open source license that allows unrestricted redistribution is > fine in llvm-test Ok, I have created a script that automatically checks out ClamAV 0.92-stable source code
2012 Apr 17
0
samba 3.6.4 smbd dies on solaris 10 sparc64
...ETTIMEOFDAY_TZ HAVE_GETUTXENT HAVE_GLOB HAVE_GRANTPT HAVE_GSSAPI HAVE_GSS_DISPLAY_STATUS HAVE_GSS_GET_NAME_ATTRIBUTE HAVE_GSS_WRAP_IOV HAVE_HSTRERROR HAVE_ICONV HAVE_IFACE_IFCONF HAVE_IF_NAMETOINDEX HAVE_IMMEDIATE_STRUCTURES HAVE_INET_ATON HAVE_INET_NTOA HAVE_INET_NTOP HAVE_INET_PTON HAVE_INITGROUPS HAVE_INITIALIZE_KRB5_ERROR_TABLE HAVE_INNETGR HAVE_INTPTR_T HAVE_IPV6 HAVE_ISATTY HAVE_KRB5 HAVE_KRB5_AUTH_CON_SETUSERUSERKEY HAVE_KRB5_AUTH_CON_SET_REQ_CKSUMTYPE HAVE_KRB5_C_ENCTYPE_COMPARE HAVE_KRB5_C_VERIFY_CHECKSUM HAVE_KRB5_...
2007 Dec 18
3
[LLVMdev] Adding ClamAV to the llvm testsuite (long)
On Mon, 17 Dec 2007, Evan Cheng wrote: > We always welcome more tests. But it looks like there are two issues > here. > > 1. The autoconf requirement. Is it possible to get one configuration > working without the need for autoconf? One way to do this is to add a "cut down" version of the app to the test suite. > 2. GPL license. Chris? Any open source license that