git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed encryption in srvconf.lib
[stg.git]
/
tests
/
testusers.h
diff --git
a/tests/testusers.h
b/tests/testusers.h
index bbf4806383394906c1c0451dd141caa73349ef2b..d73c8a7901037b66a99d55c76d1c25c684720788 100644
(file)
--- a/
tests/testusers.h
+++ b/
tests/testusers.h
@@
-7,6
+7,8
@@
class TEST_USERS : public USERS {
int FindByName(const std::string & /*login*/, USER_PTR * /*user*/)
{ return -1; }
int FindByName(const std::string & /*login*/, USER_PTR * /*user*/)
{ return -1; }
+ int FindByName(const std::string & /*login*/, CONST_USER_PTR * /*user*/) const
+ { return -1; }
bool TariffInUse(const std::string & /*tariffName*/) const
{ return -1; }
bool TariffInUse(const std::string & /*tariffName*/) const
{ return -1; }
@@
-21,12
+23,18
@@
class TEST_USERS : public USERS {
{ return 0; }
void Del(const std::string & /*login*/, const ADMIN * /*admin*/) {}
{ return 0; }
void Del(const std::string & /*login*/, const ADMIN * /*admin*/) {}
+ bool Authorize(const std::string &, uint32_t, uint32_t, const AUTH *)
+ { return false; }
+ bool Unauthorize(const std::string &, const AUTH *, const std::string &)
+ { return false; }
+
int ReadUsers() { return 0; }
int ReadUsers() { return 0; }
- int GetUserNum() const { return 0; }
+ virtual size_t Count() const { return 0; };
int FindByIPIdx(uint32_t /*ip*/, USER_PTR * /*user*/) const
{ return -1; }
bool IsIPInIndex(uint32_t /*ip*/) const { return false; }
int FindByIPIdx(uint32_t /*ip*/, USER_PTR * /*user*/) const
{ return -1; }
bool IsIPInIndex(uint32_t /*ip*/) const { return false; }
+ bool IsIPInUse(uint32_t, const std::string &, CONST_USER_PTR *) const { return false; }
int OpenSearch() { return 0; }
int SearchNext(int /*handle*/, USER_PTR * /*u*/) { return -1; }
int OpenSearch() { return 0; }
int SearchNext(int /*handle*/, USER_PTR * /*u*/) { return -1; }