summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2006-08-09 17:55:23 +0000
committerChris Wilson <chris+github@qwirx.com>2006-08-09 17:55:23 +0000
commit290a15db219034d057f3428e2dcefb724a4b8b8c (patch)
treed68a0b538c526c1c572eaafcacfc98ad40ae55a4 /bin
parente7103096b1b6c9f0e90dd0c884d81957c9d7bec3 (diff)
* bin/bbackupd/BackupDaemon.h
- Revert to trunk
Diffstat (limited to 'bin')
-rw-r--r--bin/bbackupd/BackupDaemon.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/bin/bbackupd/BackupDaemon.h b/bin/bbackupd/BackupDaemon.h
index 94a142f5..3bd15fad 100644
--- a/bin/bbackupd/BackupDaemon.h
+++ b/bin/bbackupd/BackupDaemon.h
@@ -46,12 +46,9 @@ public:
~BackupDaemon();
private:
- // methods below do partial (specialized) serialization of
- // client state only
- bool SerializeStoreObjectInfo(int64_t aClientStoreMarker,
- box_time_t theLastSyncTime, box_time_t theNextSyncTime) const;
- bool DeserializeStoreObjectInfo(int64_t & aClientStoreMarker,
- box_time_t & theLastSyncTime, box_time_t & theNextSyncTime);
+ // methods below do partial (specialized) serialization of client state only
+ void SerializeStoreObjectInfo(int64_t aClientStoreMarker, box_time_t theLastSyncTime, box_time_t theNextSyncTime) const;
+ bool DeserializeStoreObjectInfo(int64_t & aClientStoreMarker, box_time_t & theLastSyncTime, box_time_t & theNextSyncTime);
bool DeleteStoreObjectInfo() const;
BackupDaemon(const BackupDaemon &);
public:
@@ -185,10 +182,7 @@ private:
void RunHelperThread(void);
private:
- bool mDoSyncFlagOut, mSyncIsForcedOut;
- HANDLE mhMessageToSendEvent, mhCommandReceivedEvent;
- CRITICAL_SECTION mMessageQueueLock;
- std::vector<std::string> mMessageList;
+ bool mDoSyncFlagOut, mSyncIsForcedOut, mReceivedCommandConn;
#endif
};