search for: sun_len

Displaying 20 results from an estimated 23 matches for "sun_len".

Did you mean: sin_len
2015 Apr 13
3
[Compile Issue] netcat.c on HP NonStop
Greetings, I am porting the openssh-portable 6.8 release to the HP NonStop (NSE) platform. Prior versions were no real problem, with minor tweeks. However, with the inclusion of regress/netcat.c, which depends on arpa/telnet.h, we have an issue. Unfortunately, the platform does not have this file, nor anything like it - telnet is done rather differently. We do have a version of netcat (0.7.1
2002 Mar 07
0
rsync 2.5.2 doens't compile on Tru64 5.1
...ry <andrew@flury.org> to rsync 2.5.2. Now I can't even compile 2.5.2. Here is the error messages with GNU C compiler: gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c syscall.c -o syscall.o syscall.c: In function `do_mknod': syscall.c:81: structure has no member named `sun_len' syscall.c:81: warning: comparison between signed and unsigned syscall.c:81: warning: signed and unsigned type in conditional expression...
2002 Mar 14
0
rsync 2.5.2 doens't compile on Tru64 5.1 and FIFO, socket files
...ry <andrew@flury.org> to rsync 2.5.2. Now I can't even compile 2.5.2. Here is the error messages with GNU C compiler: gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c syscall.c -o syscall.o syscall.c: In function `do_mknod': syscall.c:81: structure has no member named `sun_len' syscall.c:81: warning: comparison between signed and unsigned syscall.c:81: warning: signed and unsigned type in conditional expression...
2015 Feb 24
4
Call for testing: OpenSSH 6.8
On Mon, 23 Feb 2015, Kevin Brott wrote: > > Yup - that cleared that hurdle ... now it dies here on AIX: > > xlc_r -O2 -qarch=ppc -qalloca -I/usr/include -I/opt/freeware/include > -I. -I. -O2 -qarch=ppc -qalloca -I/usr/include -I/opt/freeware/include > -DSSHDIR=\"/usr/local/etc\" -D_PATH_SSH_PROGRAM=\"/usr/local/bin/ssh\" >
2004 Sep 22
6
[Bug 1804] FreeBSD's mknod can't create FIFOs and sockets
https://bugzilla.samba.org/show_bug.cgi?id=1804 wayned@samba.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |WONTFIX ------- Additional Comments From wayned@samba.org 2004-09-22 09:56
2004 Aug 07
2
segmentation error
...test.c: In function `main': conftest.c:241: error: structure has no member named `sa_len' configure:19472: $? = 1 configure: failed program was: -- configure:19537: gcc -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:241: error: structure has no member named `sun_len' configure:19543: $? = 1 configure: failed program was: -- configure:19587: gcc -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:241: error: structure has no member named `sun_len' configure:19593: $? = 1 configure: failed program was: -- ac_cv_func_statvfs=ye...
2000 Aug 23
14
Test snapshot
...2000/08/01 11:46:11 [sshd.8] many fixes from pepper at mail.reppep.com - provos at cvs.openbsd.org 2000/08/01 13:01:42 [Makefile.in util.c aux.c] rename aux.c to util.c to help with cygwin port - deraadt at cvs.openbsd.org 2000/08/02 00:23:31 [authfd.c] correct sun_len; Alexander at Leidinger.net - provos at cvs.openbsd.org 2000/08/02 10:27:17 [readconf.c sshd.8] disable kerberos authentication by default - provos at cvs.openbsd.org 2000/08/02 11:27:05 [sshd.8 readconf.c auth-krb4.c] disallow kerberos authentication if we can't ver...
2002 Jun 24
0
Rsync 2.5.5: FreeBSD mknod can't create FIFO's
...mode)) { + return mkfifo(pathname, mode); + } +#endif + +#if HAVE_SYS_UN_H + if (S_ISSOCK(mode)) { + int sock; + struct sockaddr_un saddr; + int len = strlen(pathname) + 1; /* include null */ + + saddr.sun_family = AF_UNIX; + strncpy(saddr.sun_path, pathname, sizeof(saddr.sun_path)); + saddr.sun_len = len > sizeof(saddr.sun_path) ? sizeof(saddr.sun_path) : len; + + if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) { + return -1; + } + unlink(pathname); + if ((bind(sock, (struct sockaddr*)&saddr, sizeof(saddr))) < 0) { + return -1; + } + close(sock); + return do_chmod(pa...
2010 Jun 04
2
[Bug 1775] New: RFE: Would like to use 'abstract' unix sockets for ControlPath
https://bugzilla.mindrot.org/show_bug.cgi?id=1775 Summary: RFE: Would like to use 'abstract' unix sockets for ControlPath Product: Portable OpenSSH Version: 5.5p1 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: ssh AssignedTo:
2010 Jan 14
1
ssh(1) multiplexing rewrite
...d) -{ - struct sockaddr_un addr; - mode_t old_umask; - - if (options.control_path == NULL || - options.control_master == SSHCTL_MASTER_NO) - return; - - debug("setting up multiplex master socket"); - - memset(&addr, '\0', sizeof(addr)); - addr.sun_family = AF_UNIX; - addr.sun_len = offsetof(struct sockaddr_un, sun_path) + - strlen(options.control_path) + 1; +struct mux_master_state { + enum { MUX_HELLO_SEND, MUX_HELLO_WAIT, MUX_UP, MUX_SESSION } conn_state; +}; - if (strlcpy(addr.sun_path, options.control_path, - sizeof(addr.sun_path)) >= sizeof(addr.sun_path))...
2001 May 15
0
openssh 2.9p1 on Solaris 2.6 with AFS
...d in utmp.h... no checking for ut_addr_v6 field in utmpx.h... no checking for ut_exit field in utmp.h... yes checking for ut_time field in utmp.h... yes checking for ut_time field in utmpx.h... yes checking for ut_tv field in utmpx.h... yes checking for st_blksize in struct stat... yes checking for sun_len field in struct sockaddr_un... no checking for ss_family field in struct sockaddr_storage... no checking for __ss_family field in struct sockaddr_storage... no checking for pw_class field in struct passwd... no checking if libc defines __progname... no checking if libc defines sys_errlist... yes ch...
2001 Jun 22
0
Half-Life: Selected Mode is not supported by your card
....2+ API... yes checking whether sys/vfs.h defines statfs... yes checking whether sys/statfs.h defines statfs... yes checking whether sys/mount.h defines statfs... no checking for statfs.f_bfree... yes checking for statfs.f_bavail... yes checking for msg_accrights in struct msghdr... no checking for sun_len in struct sockaddr_un... no checking whether we need to define __i386__... no updating cache ./config.cache creating ./config.status creating Make.rules creating dlls/Makedll.rules creating programs/Makeprog.rules creating Makefile creating console/Makefile creating controls/Makefile creating debug...
2008 May 10
1
Failed to create rounding.h!
...... yes checking for struct addrinfo... yes checking for struct sockaddr_storage... yes checking whether defines needed by getaddrinfo exist... yes checking for getaddrinfo... yes checking for struct sockaddr.sa_len... no checking for struct sockaddr_in.sin_len... no checking for struct sockaddr_un.sun_len... no checking for struct sockaddr_in6.sin6_scope_id... yes checking for struct stat64... no checking for strcasecmp... yes checking for aclsort... no checking for aclsort in -lsec... no checking for utime.h... (cached) yes checking whether utime accepts a null argument... no checking for working a...
2000 Oct 04
0
2.2.0p1 chroot patch
...then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 4414 "configure" +#line 4416 "configure" #include "confdefs.h" #include <utmpx.h> EOF @@ -4441,13 +4443,13 @@ echo $ac_n "checking for sun_len field in struct sockaddr_un""... $ac_c" 1>&6 -echo "configure:4445: checking for sun_len field in struct sockaddr_un" >&5 +echo "configure:4447: checking for sun_len field in struct sockaddr_un" >&5 if eval "test \"`echo '$'...
2001 Apr 10
2
Compiling openssh 2.5.p1 on unixware 7.0.1
...px.h... (cached) no checking for ut_exit field in utmp.h... (cached) yes checking for ut_time field in utmp.h... (cached) yes checking for ut_time field in utmpx.h... (cached) yes checking for ut_tv field in utmpx.h... (cached) yes checking for st_blksize in struct stat... (cached) yes checking for sun_len field in struct sockaddr_un... (cached) no checking for ss_family field in struct sockaddr_storage... (cached) no checking for __ss_family field in struct sockaddr_storage... (cached) no checking for pw_class field in struct passwd... (cached) no checking if libc defines __progname... (cached) no c...
2002 Mar 22
2
Bug in compile of rsync 2.5.4 on Tru64 UNIX V5.1a using cc
Greetings, here is the output of the 'configure' step and the compile step (using the Compaq cc compiler that comes with Tru64 V5.1A. The configure reported success and most of the compile steps cam through error/warning free except for the one that stumbled. Can someone help me out here? I am willing to provide a binary for Tru64 V5.1A if we can swat this bug. We depend greatly on Rsync
2001 Jul 16
0
No subject
...hecking for ut_time field in utmp.h configure:6228: checking for ut_time field in utmpx.h configure:6268: checking for ut_tv field in utmpx.h configure:6304: checking for st_blksize in struct stat configure:6317: cc -c -g -I/usr/local/ssl/include conftest.c 1>&5 configure:6339: checking for sun_len field in struct sockaddr_un configure:6355: cc -c -g -I/usr/local/ssl/include conftest.c 1>&5 cc: Error: configure, line 6351: In this declaration, "s" has no linkage and is of an incomplete type. (incompnolink) struct sockaddr_un s; s.sun_len = 1; --------------------^ configur...
2001 Jul 11
0
Solaris 2.6: Undefined symbol seed_rng
...d in utmp.h... no checking for ut_addr_v6 field in utmpx.h... no checking for ut_exit field in utmp.h... yes checking for ut_time field in utmp.h... yes checking for ut_time field in utmpx.h... yes checking for ut_tv field in utmpx.h... yes checking for st_blksize in struct stat... yes checking for sun_len field in struct sockaddr_un... no checking for ss_family field in struct sockaddr_storage... no checking for __ss_family field in struct sockaddr_storage... no checking for pw_class field in struct passwd... no checking if libc defines __progname... yes checking if libc defines sys_errlist... yes c...
2010 Aug 17
6
DO NOT REPLY [Bug 7625] New: "Don't know how to make ./*.c"
https://bugzilla.samba.org/show_bug.cgi?id=7625 Summary: "Don't know how to make ./*.c" Product: rsync Version: 3.0.7 Platform: s390 OS/Version: Other Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy: sebastian.hoffman at
2008 Apr 07
3
rsync installation _error exit code1
...... yes checking for struct addrinfo... yes checking for struct sockaddr_storage... yes checking whether defines needed by getaddrinfo exist... yes checking for getaddrinfo... yes checking for struct sockaddr.sa_len... no checking for struct sockaddr_in.sin_len... no checking for struct sockaddr_un.sun_len... no checking for struct sockaddr_in6.sin6_scope_id... yes checking for struct stat64... no checking for strcasecmp... yes checking for aclsort... yes checking for utime.h... (cached) yes checking whether utime accepts a null argument... no checking for working alloca.h... yes checking for alloca....