summaryrefslogtreecommitdiff
path: root/PROTOCOL
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-10-17 11:48:52 +1100
committerDamien Miller <djm@mindrot.org>2013-10-17 11:48:52 +1100
commitf29238e67471a7f1088a99c3c3dbafce76b790cf (patch)
tree39ea232a72df52b4adbc3affea0108d8b0f45b42 /PROTOCOL
parent51682faa599550a69d8120e5e2bdbdc0625ef4be (diff)
- djm@cvs.openbsd.org 2013/10/17 00:30:13
[PROTOCOL sftp-client.c sftp-client.h sftp-server.c sftp.1 sftp.c] fsync@openssh.com protocol extension for sftp-server client support to allow calling fsync() faster successful transfer patch mostly by imorgan AT nas.nasa.gov; bz#1798 "fine" markus@ "grumble OK" deraadt@ "doesn't sound bad to me" millert@
Diffstat (limited to 'PROTOCOL')
-rw-r--r--PROTOCOL16
1 files changed, 15 insertions, 1 deletions
diff --git a/PROTOCOL b/PROTOCOL
index 48b3a4400..0363314c0 100644
--- a/PROTOCOL
+++ b/PROTOCOL
@@ -331,4 +331,18 @@ link(oldpath, newpath) and will respond with a SSH_FXP_STATUS message.
331This extension is advertised in the SSH_FXP_VERSION hello with version 331This extension is advertised in the SSH_FXP_VERSION hello with version
332"1". 332"1".
333 333
334$OpenBSD: PROTOCOL,v 1.20 2013/01/08 18:49:04 markus Exp $ 33410. sftp: Extension request "fsync@openssh.com"
335
336This request asks the server to call fsync(2) on an open file handle.
337
338 uint32 id
339 string "fsync@openssh.com"
340 string handle
341
342One receiving this request, a server will call fsync(handle_fd) and will
343respond with a SSH_FXP_STATUS message.
344
345This extension is advertised in the SSH_FXP_VERSION hello with version
346"1".
347
348$OpenBSD: PROTOCOL,v 1.21 2013/10/17 00:30:13 djm Exp $