search for: sshlib

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

Did you mean: shlib
2006 Sep 23
3
[Bug 1234] configure adds opensc libs to LDFLAGS when it should use LIBS
...GS="$CPPFLAGS $LIBOPENSC_CFLAGS" LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS" since we're grabbing libs, we actually want to be sticking that into LIBS otherwise, when the binaries get linked, they're of the form: $(CC) <objects> -o ssh $LDFLAGS <sshlibs> $LIBS so -lopensc goes into LDFLAGS instead of LIBS and if we use something like -static or --as-needed in LDFLAGS, the build aborts because the <sshlibs> use symbols from -lopensc but -lopensc is discarded before sshlibs get processed ------- You are receiving this mail because: --...
2002 Mar 10
1
libssh
...l~ I recently started coding an SFTP client in Qt, since i noticed their seemed to be a lack of one with a gui for really any platform that didn't cost money. I wrote most of the FTP portion, and then I decided to begin working on the SFTP part. I couldn't really find documentation for an sshlib to use for developing this portion of my program. Sorry if i'm sending this email to the wrong place, i couldn't find a direct email to anyone at openssh and i thought the user list wasn't what i was looking for. Does anyone know of any documentation for libssh? From looking through...
2002 Mar 22
0
[Bug 179] New: sshd sends channel data after sending EOF
...tended data after EOF has already been sent An sshd debug log from one such attempt is as follows: Server listening on 0.0.0.0 port 22. debug1: Server will not fork when running in debugging mode. Connection from 10.1.1.2 port 2283 debug1: Client protocol version 2.0; client software version 1.22 sshlib: SshMultiExec 1.1 debug1: no match: 1.22 sshlib: SshMultiExec 1.1 Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_3.1p1 debug1: list_hostkey_types: ssh-rsa,ssh-dss debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug2: kex_parse_kexinit: d...
2016 Jan 19
2
OpenSSH portability & buildsystem fixes
...dir@ top_srcdir=@top_srcdir@ -DESTDIR= VPATH=@srcdir@ SSH_PROGRAM=@bindir@/ssh ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass @@ -163,41 +162,41 @@ libssh.a: $(LIBSSH_OBJS) $(RANLIB) $@ ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS) - $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS) + $(CC) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS) sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS) - $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS) + $(CC) -o $@ $(SSHDOBJS) $(LDFLAGS)...
2004 Apr 08
1
SSH library in C?
Hello, Is there a C API for ssh client? If yes, where can I get documentation on it? If no, I would like to request it. Thank you. Jai
2020 Mar 24
4
ZSTD compression support for OpenSSH
I hacked zstd support into OpenSSH a while ago and just started to clean it up in the recent days. The cleanup includes configuration support among other things that I did not have. During testing I noticed the following differences compared to zlib: - highly interactive shell output (as in refreshed at a _very_ high rate) may result in higher bandwidth compared to zlib. Since zstd is quicker
2020 Jul 21
11
[RFC PATCH 0/4] PAM module for ssh-agent user authentication
Hi, The main (and probably the only) use case of this PAM module is to let sudo authenticate users via their ssh-agent, therefore without having to type any password and without being tempted to use the NOPASSWD sudo option for such convenience. The principle is originally implemented by an existing module [0][1] and many pages that explain how to use it for such purpose can be found online.