summaryrefslogtreecommitdiff
path: root/PROTOCOL
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2021-02-12 03:49:09 +0000
committerDarren Tucker <dtucker@dtucker.net>2021-02-17 15:03:41 +1100
commit16eacdb016ccf38dd9959c78edd3a6282513aa53 (patch)
tree0bbed1db345800cf264d26eb47c79e191ab3fa00 /PROTOCOL
parente04fd6dde16de1cdc5a4d9946397ff60d96568db (diff)
downloadopenssh-git-16eacdb016ccf38dd9959c78edd3a6282513aa53.tar.gz
upstream: sftp: add missing lsetstat@openssh.com documentation
patch from Mike Frysinger OpenBSD-Commit-ID: 9c114db88d505864075bfe7888b7c8745549715b
Diffstat (limited to 'PROTOCOL')
-rw-r--r--PROTOCOL18
1 files changed, 17 insertions, 1 deletions
diff --git a/PROTOCOL b/PROTOCOL
index ecdacb9d..5c5e042e 100644
--- a/PROTOCOL
+++ b/PROTOCOL
@@ -465,6 +465,22 @@ respond with a SSH_FXP_STATUS message.
This extension is advertised in the SSH_FXP_VERSION hello with version
"1".
+3.7. sftp: Extension request "lsetstat@openssh.com"
+
+This request is like the "setstat" command, but sets file attributes on
+symlinks. It is implemented as a SSH_FXP_EXTENDED request with the
+following format:
+
+ uint32 id
+ string "lsetstat@openssh.com"
+ string path
+ ATTRS attrs
+
+See the "setstat" command for more details.
+
+This extension is advertised in the SSH_FXP_VERSION hello with version
+"1".
+
4. Miscellaneous changes
4.1 Public key format
@@ -496,4 +512,4 @@ OpenSSH's connection multiplexing uses messages as described in
PROTOCOL.mux over a Unix domain socket for communications between a
master instance and later clients.
-$OpenBSD: PROTOCOL,v 1.38 2020/07/05 23:59:45 djm Exp $
+$OpenBSD: PROTOCOL,v 1.39 2021/02/12 03:49:09 djm Exp $