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

Method append_value

plugins/header_rewrite/value.h:52–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50 void set_value(const std::string &val, Statement *owner = nullptr);
51
52 void
53 append_value(std::string &s, const Resources &res) const
54 {
55 if (!_cond_vals.empty()) {
56 for (auto _cond_val : _cond_vals) {
57 _cond_val->append_value(s, res);
58 }
59 } else {
60 s += _value;
61 }
62 }
63
64 const std::string &
65 get_value() const

Callers

nothing calls this directly

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected