robojeb / AgFS

AgFS is a union mount style filesystem designed to allow easy access for users to remote file locations while still allowing server maintainers to keep control over who has access to what part of the file tree.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Make use of the fuse_file_info struct passed in to the open function

MarkCMann opened this issue · comments

We should begin using the fuse_file_info struct to keep track of which servers have open files. We also need to keep a list of all open files on the client and on the server so that way the server can close all connections if the client disconnects, and so that we can remove the files from inactive servers on the client side.