summaryrefslogtreecommitdiff
path: root/netfs/daemonService.h
diff options
context:
space:
mode:
Diffstat (limited to 'netfs/daemonService.h')
-rw-r--r--netfs/daemonService.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/netfs/daemonService.h b/netfs/daemonService.h
index e1a7d7f..067e4a5 100644
--- a/netfs/daemonService.h
+++ b/netfs/daemonService.h
@@ -6,12 +6,13 @@
class ServiceServer : public DaemonModule, public NetFSComms::Service {
public:
- ServiceServer(DaemonGlobalStatePtr dgs);
+ ServiceServer(int16_t hostseed, DaemonGlobalStatePtr dgs);
virtual Ice::Long connect(const std::string & share, const std::string & auth, const Ice::Current&);
virtual void disconnect(Ice::Long tok, const Ice::Current&);
+ private:
+ const int16_t hostseed;
};
#endif
-