| 72 | } |
| 73 | |
| 74 | const token_node* token_tree::find(const char* key) |
| 75 | { |
| 76 | ACL_TOKEN* token = acl_token_tree_word_match(tree_, key); |
| 77 | if (token == NULL) { |
| 78 | return NULL; |
| 79 | } |
| 80 | |
| 81 | node_.set_node(token, this); |
| 82 | return &node_; |
| 83 | } |
| 84 | |
| 85 | const token_node* token_tree::search(const char** text, const char* delimiters, |
| 86 | const char* delimiters_tab) |
nothing calls this directly
no test coverage detected