Displaying 3 results from an estimated 3 matches for "extended_data".
2011 Dec 09
0
Proposal for SFTP extension to include user name and group name in file attributes
...I find myself wishing for the name-based owner and group
handling specified in version 4 of the spec[3]. As a possible
compromise, if I submitted a patch to add an OpenSSH-specific extension
to return the user name & group name, how likely is it to be accepted?
This would use the extended_type:extended_data mechanism[4] present in
version 3.
This functionality could be useful to clients such as sshfs[5], allowing
file systems to be mounted from other servers with different uid/gid
mappings.
[1] https://bugzilla.mindrot.org/show_bug.cgi?id=1953#c1
[2] https://bugzilla.mindrot.org/show_bug.cgi?id=16...
2010 Aug 16
4
Final(?) changes committed
Hi,
In addition to the strptime change that Darren has just committed to
fix Irix, I have committed a change to ssh(1) that affects all platforms:
> - djm at cvs.openbsd.org 2010/08/12 21:49:44
> [ssh.c]
> close any extra file descriptors inherited from parent at start and
> reopen stdin/stdout to /dev/null when forking for ControlPersist.
>
> prevents tools that
2003 Oct 08
4
OS/390 openssh
...'s')
packet_put_string(buffer_ptr(&c->input), len);
+ else
+ packet_put_binary(buffer_ptr(&c->input), len);
packet_send();
buffer_consume(&c->input, len);
c->remote_window -= len;
@@ -1787,7 +1791,11 @@
packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
packet_put_int(c->remote_id);
packet_put_int(SSH2_EXTENDED_DATA_STDERR);
+ /*if (strcmp(c->ctype, "session") == 0)*/
+ if (c->ctype[0] == 's')
packet_put_string(buffer_ptr(&c->extended), len);
+ else
+ packet_put_binary(buffer_ptr(&c-&...