search for: have_socklen_t

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

2001 Nov 09
1
socklen_t - where?
Hi, openssh_cvs as of today, SCO Open Server 3.0, socklen_t this typedef doesn't exist on SCO OSR 3, and "configure" properly detects this, leading to /* #undef HAVE_SOCKLEN_T */ in config.h. Problem: I can't find any place where this is actually being used? I'd expect something like #ifndef HAVE_SOCKLEN_T typdef int socklen_t; #endif ("int" is what the relevant functions use here, checked vs. the man pages) - but there isn't anything. Which w...
2002 Jan 02
3
2.5.1pre3 - Bugs in configure script / config.h.in breaks build.
...field test version of the compiler, so I will have follow up on which is the "official" definition, if there is one. A second issue, is the line: #undef socklen_t It is not in the standard format for the other lines in the configure script. It would be helpful for it to be: #undef HAVE_SOCKLEN_T And then somewhere else, where the defintion is used, or in rsync.h #ifndef HAVE_SOCKLEN_T typedef socklen_t size_t #endif I can do debugging or testing of the configure scripts. So someone with a UNIX platform will need to verify what the fixes to the configure scripts need to be. OpenVMS...
1999 Dec 30
1
more problems with solaris 7?
configure appears to be setting things right: dragon:/var/src/openssh-1.2.1pre23> grep INTXX config.h #define HAVE_INTXX_T 1 /* #undef HAVE_U_INTXX_T */ #define HAVE_UINTXX_T 1 Marc G. Fournier marc.fournier at acadiau.ca Senior Systems Administrator Acadia University "These are my opinions, which are not necessarily shared
2005 Mar 17
1
Bogus autoconf test for socklen_t
This affects the XMMS plugin. configure.in has this test: AC_CHECK_TYPES(socklen_t, [], []) And src/plugin_xmms/http.c is the only consumer: #ifndef HAVE_SOCKLEN_T typedef unsigned int socklen_t; #endif Together this looks bogus to me. The configure check looks for socklen_t in the default headers. If it isn't found there, socklen_t will be typedef'ed. However, at least on FreeBSD socklen_t is defined in <sys/socket.h>, which is not chec...
2001 Aug 10
0
large files scp problem
...AVE_LONG_LONG_INT logic from the HAVE_INT64_T logic. --- openssh-2.9p2.orig/defines.h Wed May 9 00:39:19 2001 +++ openssh-2.9p2/defines.h Fri Aug 10 17:44:58 2001 @@ -226,6 +226,10 @@ # endif #endif +#if (SIZEOF_LONG_LONG_INT == 8) +# define HAVE_LONG_LONG_INT +#endif + #ifndef HAVE_SOCKLEN_T typedef unsigned int socklen_t; # define HAVE_SOCKLEN_T -- Mike Stone
1999 Dec 30
4
ANNOUNCE: openssh-1.2.1pre23
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 openssh-1.2.1pre23 is available on: http://violet.ibs.com.au/openssh/files/ Highlights of this release: - - A cleanup of the PAM code (it now lives in auth-pam.[ch]). This also fixes a bug where sshd was ignoring a "PermitRootLogin without-password" directive. - - David Randkin's SOCKS support using the Dante libraries. I have not
1999 Dec 30
4
ANNOUNCE: openssh-1.2.1pre23
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 openssh-1.2.1pre23 is available on: http://violet.ibs.com.au/openssh/files/ Highlights of this release: - - A cleanup of the PAM code (it now lives in auth-pam.[ch]). This also fixes a bug where sshd was ignoring a "PermitRootLogin without-password" directive. - - David Randkin's SOCKS support using the Dante libraries. I have not
2013 Aug 20
0
[PATCH] modernize configure.ac, update gnulib macros and add the havelib module, remove aclocal.m4
...bzipped it to get below mailman's limit. From the commit msg: - aclocal.m4: we don't keep auto-generated files (says Wayne) - pull in required gnulib macros to avoid the overhead of using gnulib's build process and requiring gnulib - socklen is now an own m4 module (socklen.m4) - HAVE_SOCKLEN_T is now gl_TYPE_SOCKLEN_T - add havelib module (lib-ld.m4, lib-link.m4, lib-prefix.m4) tested with: - aclocal (GNU automake) 1.12.4 - autoconf (GNU Autoconf) 2.69 (and also autoconf (GNU Autoconf) 2.63 ) Nils -------------- next part -------------- A non-text attachment was scrubbed... Name: 0002...
1999 Dec 28
2
autoconf check for socklen_t
...igure.in Mon Dec 27 00:55:17 1999 *************** *** 180,185 **** --- 180,197 ---- [AC_MSG_RESULT(no)] ) + AC_MSG_CHECKING([For socklen_t]) + AC_TRY_COMPILE( + [#include <sys/types.h>], + [#include <sys/socket.h>], + [socklen_t foo; foo = 1235;], + [ + AC_DEFINE(HAVE_SOCKLEN_T) + AC_MSG_RESULT(yes) + ], + [AC_MSG_RESULT(no)] + ) + dnl Check PAM strerror arguments AC_MSG_CHECKING([whether pam_strerror takes only one argument]) AC_TRY_COMPILE(
2013 Feb 07
0
[PATCH 3/4] xmms - Fix inline linking problems with old glib
...ot; #include <sys/types.h> #include <sys/socket.h> @@ -44,7 +42,6 @@ #include "FLAC/format.h" #include "configure.h" #include "locale_hack.h" -#include "plugin.h" /* on FreeBSD we get socklen_t from <sys/socket.h> */ #if (!defined HAVE_SOCKLEN_T) && !defined(__FreeBSD__) diff --git a/src/plugin_xmms/plugin.c b/src/plugin_xmms/plugin.c index 32ad733..85147cf 100644 --- a/src/plugin_xmms/plugin.c +++ b/src/plugin_xmms/plugin.c @@ -16,9 +16,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#if HAVE_CONFIG_H...
2011 Aug 07
2
Trouble getting in icecast Directory
..._OFFSET_BITS 64 #define _GNU_SOURCE 1 #define STDC_HEADERS 1 #define TIME_WITH_SYS_TIME 1 #define HAVE_ALLOCA_H 1 #define HAVE_PWD_H 1 #define CHUID 1 #define HAVE_UNISTD_H 1 #define CHROOT 1 #define HAVE_LOCALTIME_R 1 #define HAVE_POLL 1 #define HAVE_NANOSLEEP 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_SOCKLEN_T 1 #define HAVE_SYS_SELECT_H 1 #define HAVE_SYS_UIO_H 1 #define HAVE_SETHOSTENT 1 #define HAVE_GETNAMEINFO 1 #define HAVE_ENDHOSTENT 1 #define HAVE_GETADDRINFO 1 #define HAVE_INET_ATON 1 #define HAVE_WRITEV 1 #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 #define HAVE_INET_PTON 1 #define HAVE_XSLT...
2000 May 12
0
SunOS 4.x port
...ve trusted HPUX */ #undef HAVE_HPUX_TRUSTED_SYSTEM_PW +/* Define if you have getpwanam(3) [SunOS 4.x] */ +#undef HAVE_GETPWANAM + /* Defined if in_systm.h needs to be included with netinet/ip.h (HPUX - <sigh/>) */ #undef NEED_IN_SYSTM_H @@ -117,6 +120,7 @@ #undef HAVE_UINTXX_T #undef HAVE_SOCKLEN_T #undef HAVE_SIZE_T +#undef HAVE_SSIZE_T #undef HAVE_STRUCT_SOCKADDR_STORAGE #undef HAVE_STRUCT_ADDRINFO #undef HAVE_STRUCT_IN6_ADDR --- defines.h.DIST Mon May 1 08:03:56 2000 +++ defines.h Fri May 12 15:54:59 2000 @@ -150,6 +150,11 @@ # define HAVE_SIZE_T #endif /* HAVE_SIZE_T */ +#ifndef...
2004 Aug 06
0
Submission: Patch to libshout/sock.c for MacOSX
...td.h> #endif #include <string.h> #include <errno.h> #include <fcntl.h> #ifndef _WIN32 #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <sys/time.h> #include <netdb.h> #else #include <winsock.h> #endif #ifndef HAVE_SOCKLEN_T #define socklen_t int #endif #ifndef _WIN32 extern int h_errno, errno; #endif #include "sock.h" int sock_recoverable(int error) { if (error == EAGAIN || error == EINTR || error == EINPROGRESS || error == EWOULDBLOCK) { return 1; } return 0; } int sock_valid_socket(SOCKET sockfd)...
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
...HAVE_SETRESGID HAVE_SETRESGID_DECL HAVE_SETRESUID HAVE_SETRESUID_DECL HAVE_SETSID HAVE_SETXATTR HAVE_SHMGET HAVE_SHORT_KRB5_MK_ERROR_INTERFACE HAVE_SIGACTION HAVE_SIGBLOCK HAVE_SIGPROCMASK HAVE_SIGSET HAVE_SIG_ATOMIC_T_TYPE HAVE_SNPRINTF HAVE_SOCKETPAIR HAVE_SOCKLEN_T HAVE_SPLICE_DECL HAVE_SRAND HAVE_SRANDOM HAVE_SS_FAMILY HAVE_STAT64 HAVE_STATVFS_F_FLAG HAVE_STAT_HIRES_TIMESTAMPS HAVE_STAT_ST_BLKSIZE HAVE_STAT_ST_BLOCKS HAVE_STRCASECMP HAVE_STRCASESTR HAVE_STRCHR HAVE_STRDUP HAVE_STRERROR HAVE_STRFTIME HAVE_STRNDU...
2019 Oct 29
0
auth logging or auditing
...MMAP ?? HAVE_SHMGET ?? HAVE_SHM_OPEN ?? HAVE_SHOW_PANEL ?? HAVE_SIGACTION ?? HAVE_SIGBLOCK ?? HAVE_SIGGETMASK ?? HAVE_SIGLONGJMP ?? HAVE_SIGPROCMASK ?? HAVE_SIGSET ?? HAVE_SIGSETMASK ?? HAVE_SIG_ATOMIC_T_TYPE ?? HAVE_SIMPLE_C_PROG ?? HAVE_SIZE_T ?? HAVE_SNPRINTF ?? HAVE_SOCKET ?? HAVE_SOCKETPAIR ?? HAVE_SOCKLEN_T ?? HAVE_SPLICE_DECL ?? HAVE_SRAND ?? HAVE_SRANDOM ?? HAVE_SSIZE_T ?? HAVE_SS_FAMILY ?? HAVE_STATFS_F_FSID ?? HAVE_STATVFS ?? HAVE_STATVFS_F_FLAG ?? HAVE_STAT_HIRES_TIMESTAMPS ?? HAVE_STAT_ST_BLKSIZE ?? HAVE_STAT_ST_BLOCKS ?? HAVE_STAT_TV_NSEC ?? HAVE_STRCASECMP ?? HAVE_STRCASESTR ?? HAVE_STRCHR ??...
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
...AVE_SETPGID HAVE_SETRESGID HAVE_SETRESGID_DECL HAVE_SETRESUID HAVE_SETRESUID_DECL HAVE_SETSID HAVE_SHMGET HAVE_SHM_OPEN HAVE_SIGACTION HAVE_SIGBLOCK HAVE_SIGPROCMASK HAVE_SIGSET HAVE_SIG_ATOMIC_T_TYPE HAVE_SNPRINTF HAVE_SOCKADDR_SA_LEN HAVE_SOCKETPAIR HAVE_SOCKLEN_T HAVE_SOCK_SIN_LEN HAVE_SRAND HAVE_SRANDOM HAVE_SS_FAMILY HAVE_STATVFS_F_FLAG HAVE_STAT_HIRES_TIMESTAMPS HAVE_STAT_ST_BLKSIZE HAVE_STAT_ST_BLOCKS HAVE_STAT_ST_FLAGS HAVE_STRCASECMP HAVE_STRCASESTR HAVE_STRCHR HAVE_STRDUP HAVE_STRERROR HAVE_STRERROR_R H...
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
...E_SET_MENU_ITEMS HAVE_SHARED_MMAP HAVE_SHOW_PANEL HAVE_SIGACTION HAVE_SIGBLOCK HAVE_SIGGETMASK HAVE_SIGLONGJMP HAVE_SIGPROCMASK HAVE_SIGSET HAVE_SIGSETMASK HAVE_SIG_ATOMIC_T_TYPE HAVE_SIMPLE_C_PROG HAVE_SIZE_T HAVE_SNPRINTF HAVE_SOCKET HAVE_SOCKETPAIR HAVE_SOCKLEN_T HAVE_SPLICE_DECL HAVE_SPOTLIGHT_BACKEND_ES HAVE_SRAND HAVE_SRANDOM HAVE_SSIZE_T HAVE_SS_FAMILY HAVE_STATFS_F_FSID HAVE_STATVFS HAVE_STATVFS_F_FLAG HAVE_STAT_HIRES_TIMESTAMPS HAVE_STAT_ST_BLKSIZE HAVE_STAT_ST_BLOCKS HAVE_STAT_TV_NSEC HAVE_STRCASECMP HAVE_...
2012 Apr 17
0
samba 3.6.4 smbd dies on solaris 10 sparc64
...E_SETLINEBUF HAVE_SETLOCALE HAVE_SETNETGRENT HAVE_SETNETGRENT_PROTOTYPE HAVE_SETPGID HAVE_SETSID HAVE_SHMGET HAVE_SHM_OPEN HAVE_SHORT_KRB5_MK_ERROR_INTERFACE HAVE_SIGACTION HAVE_SIGPROCMASK HAVE_SIGSET HAVE_SIG_ATOMIC_T_TYPE HAVE_SNPRINTF HAVE_SOCKETPAIR HAVE_SOCKLEN_T HAVE_SOLARIS_ACLS HAVE_SRAND HAVE_SRANDOM HAVE_SS_FAMILY HAVE_STAT64 HAVE_STATVFS_F_FLAG HAVE_STAT_HIRES_TIMESTAMPS HAVE_STAT_ST_BLKSIZE HAVE_STAT_ST_BLOCKS HAVE_STRCASECMP HAVE_STRCHR HAVE_STRDUP HAVE_STRERROR HAVE_STRERROR_R HAVE_STRFTIME HAVE_STRLC...