MCPcopy Create free account
hub / github.com/acl-dev/acl / set_password

Method set_password

lib_acl_cpp/src/redis/redis_client.cpp:59–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59void redis_client::set_password(const char* pass)
60{
61 if (pass_) {
62 acl_myfree(pass_);
63 }
64 if (pass && *pass) {
65 pass_ = acl_mystrdup(pass);
66 } else {
67 pass_ = NULL;
68 }
69}
70
71void redis_client::set_db(int dbnum)
72{

Callers 15

redis_threadMethod · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected