summaryrefslogtreecommitdiff
path: root/security/libssh/patches
diff options
context:
space:
mode:
authoradrianp <adrianp@pkgsrc.org>2006-02-05 00:20:17 +0000
committeradrianp <adrianp@pkgsrc.org>2006-02-05 00:20:17 +0000
commit3840d7f7ba0866519007c75396342a83e1289b80 (patch)
tree57b066c54ff9fcafa25429e8d2ab79d5e915a07a /security/libssh/patches
parentfbe36b6a175cc47cca101895f3bd55f19bc9859b (diff)
downloadpkgsrc-3840d7f7ba0866519007c75396342a83e1289b80.tar.gz
Update to 0.11
> -server implementation development. I won't document it before it even works. > -small bug corrected when connecting to sun ssh servers. > -channel wierdness corrected (writing huge data packets) > -channel_read_nonblocking added > -channel bug where stderr wasn't correctly read fixed. > -sftp_file_set_nonblocking added. It's now possible to have nonblocking SFTP IO > -connect_status callback. > -priv.h contains the internal functions, libssh.h the public interface > -options_set_timeout (thx marcelo) really working. > -tcp tunneling through channel_open_forward. > -channel_request_exec() > -channel_request_env() > -ssh_get_pubkey_hash() > -ssh_is_server_known() > -ssh_write_known_host() > -options_set_ssh_dir > -how could this happen ! there weren't any channel_close ! > -nasty channel_free bug resolved. > -removed the unsigned long all around the code. use only u8,u32 & u64. > -it now compiles and runs under amd64 ! > -channel_request_exec() > -channel_request_env() > -ssh_get_pubkey_hash() > -ssh_is_server_known() > -ssh_write_known_host() > -options_set_ssh_dir > -how could this happen ! there weren't any channel_close ! > -nasty channel_free bug resolved. > -removed the unsigned long all around the code. use only u8,u32 & u64. > -it now compiles and runs under amd64 ! > -channel_request_pty_size > -channel_change_pty_size > -options_copy() > -ported the doc to an HTML file. > -small bugfix in packet.c > -prefixed error constants with SSH_ > -sftp_stat, sftp_lstat, sftp_fstat. thanks Michel Bardiaux for the patch. > -again channel number mismatch fixed. > -fixed a bug in ssh_select making the select fail when a signal has been caught. > -keyboard-interactive authentication working.
Diffstat (limited to 'security/libssh/patches')
-rw-r--r--security/libssh/patches/patch-aa17
1 files changed, 17 insertions, 0 deletions
diff --git a/security/libssh/patches/patch-aa b/security/libssh/patches/patch-aa
new file mode 100644
index 00000000000..8bf25f42f01
--- /dev/null
+++ b/security/libssh/patches/patch-aa
@@ -0,0 +1,17 @@
+$NetBSD: patch-aa,v 1.1 2006/02/05 00:20:17 adrianp Exp $
+
+--- sample.c.orig 2005-03-04 19:54:59.000000000 +0000
++++ sample.c
+@@ -20,7 +20,12 @@ clients must be made or how a client sho
+
+ #include <sys/select.h>
+ #include <sys/time.h>
++#if defined(__NetBSD__)
++#include <sys/types.h>
++#include <util.h> /* openpty() on NetBSD */
++#else
+ #include <pty.h>
++#endif
+ #include <signal.h>
+ #include <errno.h>
+ #include <libssh/libssh.h>