diff options
Diffstat (limited to 'smarttvfactory.h')
-rwxr-xr-x | smarttvfactory.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/smarttvfactory.h b/smarttvfactory.h index 1762967..3e5b95b 100755 --- a/smarttvfactory.h +++ b/smarttvfactory.h @@ -192,6 +192,12 @@ class SmartTvServer : public cStatus { cRecFolder* GetRecDb(); + void addToBlackList(string); + void removeFromBlackList(string); + + bool isBlackListed(string); + list<string> *getBlackList(); + private: void addHttpResource(int fd, cHttpResourceBase* resource); void pushToClients(cHttpResourceBase* resource); @@ -256,6 +262,8 @@ class SmartTvServer : public cStatus { cRecFolder* mRecordings; int mRecState; void CreateRecDb(); + + list<string> mClientBlackList; }; |