object: move go-routine listing from posix to objectLayer. (#1491)

This commit is contained in:
Krishna Srinivas
2016-05-06 01:21:56 +05:30
committed by Harshavardhana
parent 46680788f9
commit 247e835d7b
16 changed files with 767 additions and 1007 deletions
+6 -15
View File
@@ -27,21 +27,6 @@ type ListVolsReply struct {
Vols []VolInfo
}
// ListFilesArgs list file args.
type ListFilesArgs struct {
Vol string
Prefix string
Marker string
Recursive bool
Count int
}
// ListFilesReply list file reply.
type ListFilesReply struct {
Files []FileInfo
EOF bool
}
// StatFileArgs stat file args.
type StatFileArgs struct {
Vol string
@@ -54,6 +39,12 @@ type DeleteFileArgs struct {
Path string
}
// ListDirArgs list dir args.
type ListDirArgs struct {
Vol string
Path string
}
// RenameFileArgs rename file args.
type RenameFileArgs struct {
SrcVol string