summaryrefslogtreecommitdiff
path: root/netfs/fuse.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2010-10-24 17:38:40 +0000
committerrandomdan <randomdan@localhost>2010-10-24 17:38:40 +0000
commit70acd33956196cfd8d304bcb830032fe98bffd6c (patch)
tree0c042daca1f8e1bda24d73deb74a3dfe227063cc /netfs/fuse.h
parentSend a request environment object container the auth token, and now with cont... (diff)
downloadnetfs-70acd33956196cfd8d304bcb830032fe98bffd6c.tar.bz2
netfs-70acd33956196cfd8d304bcb830032fe98bffd6c.tar.xz
netfs-70acd33956196cfd8d304bcb830032fe98bffd6c.zip
Store the fuse config and initialise the Ice proxies as needed
Diffstat (limited to 'netfs/fuse.h')
-rw-r--r--netfs/fuse.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/netfs/fuse.h b/netfs/fuse.h
index 6bcc3ae..a4e6335 100644
--- a/netfs/fuse.h
+++ b/netfs/fuse.h
@@ -4,6 +4,7 @@
#include <Ice/Ice.h>
#include "netfsComms.h"
#include "fuseapp.h"
+#include "fuseConfig.h"
class NetFS : public FuseAppBase
{
@@ -50,11 +51,12 @@ class NetFS : public FuseAppBase
int statfs(const char *, struct statvfs *);
// stuff
- ReqEnv reqEnv() const;
+ ReqEnv reqEnv();
int & _argc;
char ** _argv;
Ice::CommunicatorPtr ic;
+ FuseConfigPtr fc;
NetFSComms::FilesPrx files;
NetFSComms::DirsPrx dirs;