From 1ff10b144afe857aa4cd2fc305b25a85696c73b5 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 20 Mar 2015 13:22:38 +1100 Subject: [PATCH] Defined FlushFile structs. --- file_system.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/file_system.go b/file_system.go index 6572090..834e172 100644 --- a/file_system.go +++ b/file_system.go @@ -823,6 +823,17 @@ type WriteFileRequest struct { type WriteFileResponse struct { } +type FlushFileRequest struct { + Header RequestHeader + + // The file and handle being flushed. + Inode InodeID + Handle HandleID +} + +type FlushFileResponse struct { +} + type ReleaseFileHandleRequest struct { Header RequestHeader