search for: ioccom

Displaying 7 results from an estimated 7 matches for "ioccom".

Did you mean: docco
2001 Nov 08
0
OpenSSH 3.0p1+AFS+PAM on Solaris 8
Seems like AFS support uses a structure in ioctl.h that requires sys/ioccom.h to be included beforehand. The following patch checks for this header file, and makes sure it is included. I don't have the latest auto* tools, so I hand-synthesized "configure"; hopefully this doesn't mask typo's in its sources. --- config.h.in.ORIG Sat Nov 3 19:2...
2018 Aug 13
2
Re: [PATCH v2 4/4] file: Zero for block devices on old kernels
On 08/03/2018 02:28 PM, Nir Soffer wrote: > fallocate(FALLOC_FL_ZERO_RANGE) is supportd for block devices with s/supportd/supported/ > modern kernel, but when it is not, we fall back to manual zeroing. > > For block device, try also to use ioctl(BLKZEROOUT) if offset and count > are aligned to block device sector size. > > Here is an example run without this change on RHEL
2001 Jul 16
1
openssh 2.9p1 on Solaris 2.6 with AFS
...> gmake: *** [sshconnect1.o] Error 1 patch to your krb-1.0.? installed include/kafs.h on Solaris: --- kafs.h~ Tue Dec 12 15:53:47 2000 +++ kafs.h Fri Dec 15 12:22:05 2000 @@ -36,6 +36,9 @@ #ifndef __KAFS_H #define __KAFS_H +/* need _IOW on Solaris , 15.12.00 JI */ +#include <sys/ioccom.h> + /* XXX must include krb5.h or krb.h */ /* sys/ioctl.h must be included manually before kafs.h */
2000 Dec 01
0
Compile problem and fix
...=============================================== *** sshconnect1.c~ Tue May 9 03:03:03 2000 --- sshconnect1.c Wed May 10 16:38:51 2000 *************** *** 16,21 **** --- 16,24 ---- #include <openssl/rsa.h> #include <openssl/evp.h> + #include <sys/ioctl.h> + #include <sys/ioccom.h> + #include "xmalloc.h" #include "rsa.h" #include "ssh.h" ====================================================================== Karsten
2001 Oct 03
0
Minor bug in ssh_connect1.c when AFS is defined.
...it uses macros inside them. - Booker C. Bense [1]- Where kth installs by default. diff -u -r1.1.1.1 sshconnect1.c --- sshconnect1.c 2001/10/01 18:18:47 1.1.1.1 +++ sshconnect1.c 2001/10/02 22:53:09 @@ -25,6 +25,8 @@ #include <krb5.h> #endif #ifdef AFS +#include <sys/ioccom.h> +#include <sys/ioctl.h> #include <kafs.h> #include "radix.h" #endif
2001 Mar 06
0
Problem compiling openssh on Solaris 2.6 with AFS-krb4 (fwd)
..._IOW' MM> sshconnect1.c:543: parse error before `struct' MM> make: *** [sshconnect1.o] Error 1 --- kafs.h~ Tue Dec 12 15:53:47 2000 +++ kafs.h Fri Dec 15 12:22:05 2000 @@ -36,6 +36,9 @@ #ifndef __KAFS_H #define __KAFS_H +/* need _IOW on Solaris , 15.12.00 JI */ +#include <sys/ioccom.h> + /* XXX must include krb5.h or krb.h */ /* sys/ioctl.h must be included manually before kafs.h */ Best regards Jan
2002 Oct 16
3
ssh-3.5p1 core dumps on Solaris 2.6
...robably no-one is interested? Binaries were configured with krb4 and afs enabled. However, only the second crash seems to be related to krb4. Any thoughts? I had to add one line to includes.h: #include <sys/types.h> #include <sys/socket.h> #include <sys/ioctl.h> +#include <sys/ioccom.h> #include <sys/wait.h> $ ./ssh -v pf-i400 OpenSSH_3.5p1, SSH protocols 1.5/2.0, OpenSSL 0x00906080 debug1: Reading configuration data /usr/local/etc/ssh_config debug1: Applying options for * debug1: Rhosts Authentication disabled, originating port will not be trusted. debug1: ssh_conne...