Add a concept of an "instanceId" to the controller, which the OnePoint can use to determine whether it is the same running database instance it already knows.

This commit is contained in:
Adam Ierymenko 2015-07-17 10:47:21 -07:00
parent 5ef806c43c
commit 5515909c1e
2 changed files with 34 additions and 4 deletions

View file

@ -138,6 +138,8 @@ private:
sqlite3_stmt *_sDeleteGateways;
sqlite3_stmt *_sCreateGateway;
sqlite3_stmt *_sIncrementMemberRevisionCounter;
sqlite3_stmt *_sGetConfig;
sqlite3_stmt *_sSetConfig;
Mutex _lock;
};