MCPcopy Create free account
hub / github.com/apache/trafficserver / get_resource_ids

Method get_resource_ids

plugins/header_rewrite/statement.cc:36–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36ResourceIDs
37Statement::get_resource_ids() const
38{
39 const Statement *stmt = this;
40 ResourceIDs ids = RSRC_NONE;
41
42 while (stmt) {
43 ids = static_cast<ResourceIDs>(ids | stmt->_rsrc);
44 stmt = stmt->_next;
45 }
46
47 return ids;
48}
49
50bool
51Statement::set_hook(TSHttpHookID hook)

Callers 4

set_valueMethod · 0.45
make_conditionMethod · 0.45
add_operatorMethod · 0.45
get_all_resource_idsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected