search for: have_struct_sockaddr_in6

Displaying 17 results from an estimated 17 matches for "have_struct_sockaddr_in6".

2000 Jan 17
1
pre27 compilation fails on Sol7 box
...r target atomicio.o' This is indeed bizarre because the bit of code in question is: ------->8-----fake-socket.h--starting-at-line-28------- #ifndef HAVE_STRUCT_IN6_ADDR struct in6_addr { u_int8_t s6_addr[16]; <------ line 30 }; #endif /* !HAVE_STRUCT_IN6_ADDR */ #ifndef HAVE_STRUCT_SOCKADDR_IN6 struct sockaddr_in6 { unsigned short sin6_family; u_int16_t sin6_port; u_int32_t sin6_flowinfo; struct in6_addr sin6_addr; <------- line 39 }; #endif /* !HAVE_STRUCT_SOCKADDR_IN6 */ ---------8<------------------------------------------- which would appear to have the req...
2008 Jul 30
1
5.1p build problem on SCO OSR6
Build of 5.1p1 fails on SCO OSR6 with the error: UX:acomp: ERROR: "addrmatch.c", line 100: undefined struct/union member: sin6_scope_id configure checks for presence of struct sockaddr_in6 and uses the system declaration if found (via #define HAVE_STRUCT_SOCKADDR_IN6 in config.h) If not found, the struct is declared in openbsd-compat/fake-rfc2553.h. OSR6 has struct sockaddr_in6 but it does not include the sin6_scope_id member. The declaration in fake-rfc2553.h does include this member, which is referenced in addrmatch.c. So the problem seems to be, openssh er...
2002 Jun 28
0
[Bug 316] New: ifdefs for systems without IPV6
...k.meyer at dinoex.sub.org --- sshconnect.c.orig Wed Aug 8 00:29:09 2001 +++ sshconnect.c Wed Oct 3 14:28:15 2001 @@ -577,11 +577,13 @@ sin_addr.s_addr) >> 24) == IN_LOOPBACKNET; salen = sizeof(struct sockaddr_in); break; +#ifdef HAVE_STRUCT_SOCKADDR_IN6 case AF_INET6: local = IN6_IS_ADDR_LOOPBACK( &(((struct sockaddr_in6 *)hostaddr)->sin6_addr)); salen = sizeof(struct sockaddr_in6); break; +#endif default: local = 0; salen = s...
2002 Sep 10
0
[Bug 316] ifdefs for systems without IPV6
...|RESOLVED Resolution| |WORKSFORME ------- Additional Comments From djm at mindrot.org 2002-09-10 22:16 ------- What are you trying to fix here? We already supply IPv6 compatibility in libopenbsd-compat.a. This includes definitions for struct sockaddr_in6 and HAVE_STRUCT_SOCKADDR_IN6 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2002 Oct 21
0
[Bug 418] New: Allow to build on systems without IPV6
...skip it when not detected: --- sshconnect.c.orig Wed Aug 8 00:29:09 2001 +++ sshconnect.c Wed Oct 3 14:28:15 2001 @@ -577,11 +577,13 @@ sin_addr.s_addr) >> 24) == IN_LOOPBACKNET; salen = sizeof(struct sockaddr_in); break; +#ifdef HAVE_STRUCT_SOCKADDR_IN6 case AF_INET6: local = IN6_IS_ADDR_LOOPBACK( &(((struct sockaddr_in6 *)hostaddr)->sin6_addr)); salen = sizeof(struct sockaddr_in6); break; +#endif default: local = 0; salen = s...
2000 Jan 18
0
More NetBSD patches
...[ AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE) @@ -257,7 +265,10 @@ AC_MSG_CHECKING([for struct sockaddr_in6]) AC_TRY_COMPILE( - [#include <netinet/in.h>], + [ +#include <sys/types.h> +#include <netinet/in.h> + ], [struct sockaddr_in6 s; s.sin6_family = 0;], [ AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6) @@ -268,7 +279,10 @@ AC_MSG_CHECKING([for struct in6_addr]) AC_TRY_COMPILE( - [#include <netinet/in.h>], + [ +#include <sys/types.h> +#include <netinet/in.h> + ], [struct in6_addr s; s.s6_addr[0] = 0;], [ AC_DEFINE(HAVE_STRUCT_IN6_ADDR) @@ -280,6 +294,7 @@ AC_MSG_CHEC...
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
...N HAVE_STRPBRK HAVE_STRSIGNAL HAVE_STRTOK_R HAVE_STRTOL HAVE_STRTOLL HAVE_STRTOQ HAVE_STRTOULL HAVE_STRTOUQ HAVE_STRUCT_ADDRINFO HAVE_STRUCT_DIRENT64 HAVE_STRUCT_IFADDRS HAVE_STRUCT_SIGEVENT HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR HAVE_STRUCT_SOCKADDR HAVE_STRUCT_SOCKADDR_IN6 HAVE_STRUCT_SOCKADDR_STORAGE HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC HAVE_STRUCT_STAT_ST_RDEV HAVE_STRUCT_TIMESPEC HAVE_ST_RDEV HAVE_SYMLINK HAVE_SYSCONF HAVE_SYSLOG HAVE_SYS_QUOTAS HAVE_TEXTDOMAIN HAVE_TICKET_POINTER_IN_KRB5_AP_REQ HAVE_TIMEGM HAVE_UINTPTR_T HAVE...
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...4_T 1 #define HAVE_U_INT64_T 1 #define HAVE_U_CHAR 1 #define HAVE_SIZE_T 1 #define HAVE_SSIZE_T 1 #define HAVE_CLOCK_T 1 #define HAVE_MODE_T 1 #define HAVE_PID_T 1 #define HAVE_SA_FAMILY_T 1 #define HAVE_STRUCT_SOCKADDR_STORAGE 1 #define HAVE_STRUCT_ADDRINFO 1 #define HAVE_STRUCT_IN6_ADDR 1 #define HAVE_STRUCT_SOCKADDR_IN6 1 #define HAVE_SS_FAMILY_IN_SS 1 /* #undef HAVE___SS_FAMILY_IN_SS */ /* #undef HAVE_DEV_PTMX */ /* #undef HAVE_DEV_PTS_AND_PTC */ /* #undef IPADDR_IN_DISPLAY */ #define USER_PATH "/usr/bin:/bin:/usr/sbin:/sbin:/users/eckmann/export/ssh/bin" #define _PATH_SSH_PIDDIR "/var/run" /*...
2019 Oct 29
0
auth logging or auditing
..._STRSEP ?? HAVE_STRSIGNAL ?? HAVE_STRTOK_R ?? HAVE_STRTOL ?? HAVE_STRTOLL ?? HAVE_STRTOQ ?? HAVE_STRTOULL ?? HAVE_STRTOUQ ?? HAVE_STRUCT_ADDRINFO ?? HAVE_STRUCT_IFADDRS ?? HAVE_STRUCT_MSGHDR_MSG_CONTROL ?? HAVE_STRUCT_SIGEVENT ?? HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR ?? HAVE_STRUCT_SOCKADDR ?? HAVE_STRUCT_SOCKADDR_IN6 ?? HAVE_STRUCT_SOCKADDR_STORAGE ?? HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC ?? HAVE_STRUCT_STAT_ST_RDEV ?? HAVE_STRUCT_TIMESPEC ?? HAVE_STRUCT_WINSIZE ?? HAVE_ST_RDEV ?? HAVE_SWAB ?? HAVE_SYMLINK ?? HAVE_SYSCALL ?? HAVE_SYSCONF ?? HAVE_SYSCTL ?? HAVE_SYSLOG ?? HAVE_TEXTDOMAIN ?? HAVE_TGETENT ?? HAVE_TIMEGM...
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
...VE_STRSIGNAL HAVE_STRTOK_R HAVE_STRTOL HAVE_STRTOLL HAVE_STRTOQ HAVE_STRTOULL HAVE_STRTOUQ HAVE_STRUCT_ADDRINFO HAVE_STRUCT_IFADDRS HAVE_STRUCT_SIGEVENT HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR HAVE_STRUCT_SOCKADDR HAVE_STRUCT_SOCKADDR_IN6 HAVE_STRUCT_SOCKADDR_SA_LEN HAVE_STRUCT_SOCKADDR_STORAGE HAVE_STRUCT_STAT_ST_BIRTHTIME HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC HAVE_STRUCT_STAT_ST_RDEV HAVE_STRUCT_TIMESPEC HAVE_ST_RDEV HAVE_SYMLI...
2010 Nov 01
1
Samba 4 on osx
...g for volatile int : ok Checking for uint_t : not found Checking for socklen_t : ok Checking for struct ifaddrs : ok Checking for struct addrinfo : ok Checking for struct sockaddr : ok Checking for HAVE_STRUCT_SOCKADDR_IN6 : ok Checking for struct sockaddr_storage : ok Checking for sa_family_t : ok Checking for sig_atomic_t : ok Checking for inet_ntoa : ok Checking for inet_aton : ok Checking for inet_ntop : ok C...
2010 Oct 07
1
OSX and samba4 git
...g for volatile int : ok Checking for uint_t : not found Checking for socklen_t : ok Checking for struct ifaddrs : ok Checking for struct addrinfo : ok Checking for struct sockaddr : ok Checking for HAVE_STRUCT_SOCKADDR_IN6 : ok Checking for struct sockaddr_storage : ok Checking for sa_family_t : ok Checking for sig_atomic_t : ok Checking for inet_ntoa : ok Checking for inet_aton : ok Checking for inet_ntop : ok C...
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]
2020 Jun 03
3
get_ea_dos_attribute: Cannot get attribute from EA on file .: Error = No data available
..._STRSEP HAVE_STRSIGNAL HAVE_STRTOK_R HAVE_STRTOL HAVE_STRTOLL HAVE_STRTOQ HAVE_STRTOULL HAVE_STRTOUQ HAVE_STRUCT_ADDRINFO HAVE_STRUCT_IFADDRS HAVE_STRUCT_MSGHDR_MSG_CONTROL HAVE_STRUCT_SIGEVENT HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR HAVE_STRUCT_SOCKADDR HAVE_STRUCT_SOCKADDR_IN6 HAVE_STRUCT_SOCKADDR_STORAGE HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC HAVE_STRUCT_STAT_ST_RDEV HAVE_STRUCT_TIMESPEC HAVE_STRUCT_WINSIZE HAVE_ST_RDEV HAVE_SWAB HAVE_SYMLINK HAVE_SYSCALL HAVE_SYSCONF HAVE_SYSCTL HAVE_SYSLOG HAVE_TEXTDOMAIN HAVE_TGETENT HAVE_TIMEGM...
2012 Apr 17
0
samba 3.6.4 smbd dies on solaris 10 sparc64
...ERROR_R HAVE_STRFTIME HAVE_STRLCAT HAVE_STRLCPY HAVE_STRPBRK HAVE_STRSIGNAL HAVE_STRTOK_R HAVE_STRTOL HAVE_STRTOLL HAVE_STRTOULL HAVE_STRUCT_ADDRINFO HAVE_STRUCT_FLOCK64 HAVE_STRUCT_SIGEVENT HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR HAVE_STRUCT_SOCKADDR HAVE_STRUCT_SOCKADDR_IN6 HAVE_STRUCT_SOCKADDR_STORAGE HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC HAVE_STRUCT_STAT_ST_RDEV HAVE_STRUCT_TIMESPEC HAVE_ST_RDEV HAVE_SYMLINK HAVE_SYSCONF HAVE_SYSLOG HAVE_TDB_ERR_NESTING HAVE_TEXTDOMAIN HAVE_TICKET_POINTER_IN_KRB5_AP_REQ HAVE_UINTPTR_T HAVE_UNIXSOCKE...
2018 Dec 06
3
Build error while upgrading samba 4.9.3
...: ok Checking for socklen_t : ok Checking for struct ifaddrs : ok Checking for struct addrinfo : ok Checking for struct sockaddr : ok Checking for HAVE_STRUCT_SOCKADDR_IN6 : ok Checking for struct sockaddr_storage : ok Checking for sa_family_t : ok Checking for sig_atomic_t : ok Checking for sigsetmask : ok Checkin...