| 22 | } |
| 23 | |
| 24 | const char* token_node::get_key() const |
| 25 | { |
| 26 | if (me_ == NULL) { |
| 27 | return ""; |
| 28 | } |
| 29 | if (dirty_) { |
| 30 | acl_token_name(me_, key_.vstring()); |
| 31 | const_cast<token_node*>(this)->dirty_ = false; |
| 32 | } |
| 33 | return key_.c_str(); |
| 34 | } |
| 35 | |
| 36 | void* token_node::get_ctx() const |
| 37 | { |
no test coverage detected