diff options
author | randomdan <randomdan@localhost> | 2010-10-20 23:31:13 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2010-10-20 23:31:13 +0000 |
commit | ec21d961629bd64eea694ccb3220c2a4591ff84c (patch) | |
tree | e8220ba27495234c3bdf70b03e881cdad7e2077f /netfs/fuse.h | |
parent | Loosely tested code cull and tidy up (diff) | |
download | netfs-ec21d961629bd64eea694ccb3220c2a4591ff84c.tar.bz2 netfs-ec21d961629bd64eea694ccb3220c2a4591ff84c.tar.xz netfs-ec21d961629bd64eea694ccb3220c2a4591ff84c.zip |
Commit WTD basic FS works
Diffstat (limited to 'netfs/fuse.h')
-rw-r--r-- | netfs/fuse.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/netfs/fuse.h b/netfs/fuse.h index 74374d5..707b368 100644 --- a/netfs/fuse.h +++ b/netfs/fuse.h @@ -11,6 +11,8 @@ class NetFS : public FuseAppBase NetFS(int & argc, char ** argv); ~NetFS(); private: + void * init (struct fuse_conn_info * info); + int opt_parse(void *, const char * arg, int key, struct fuse_args *); // misc int access(const char * p, int a); int getattr(const char * p, struct stat * s); @@ -46,6 +48,12 @@ class NetFS : public FuseAppBase NetFSComms::DirsPrx dirs; NetFSComms::MiscPrx misc; NetFSComms::SystemPrx system; + NetFSComms::ServicePrx service; + + Ice::Long authtok; + + std::string mountPoint; + std::string exportName; }; #endif |