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

Function TSUserArgSet

src/api/InkAPI.cc:5136–5147  ·  view source on GitHub ↗

-------------

Source from the content-addressed store, hash-verified

5134
5135// -------------
5136void
5137TSUserArgSet(void *data, int arg_idx, void *arg)
5138{
5139 if (nullptr != data) {
5140 PluginUserArgsMixin *user_args = dynamic_cast<PluginUserArgsMixin *>(static_cast<Continuation *>(data));
5141 sdk_assert(user_args);
5142
5143 user_args->set_user_arg(arg_idx, arg);
5144 } else {
5145 global_user_args.set_user_arg(arg_idx, arg);
5146 }
5147}
5148
5149void *
5150TSUserArgGet(void *data, int arg_idx)

Callers 15

TSRemapDoRemapFunction · 0.85
vconn_arg_handlerFunction · 0.85
cleanupTransactionFunction · 0.85
utils_internal.ccFile · 0.85
cont_globalFunction · 0.85
TSPluginInitFunction · 0.85
TSRemapDoRemapFunction · 0.85
TSPluginInitFunction · 0.85
execMethod · 0.85
TSRemapDoRemapFunction · 0.85

Calls 1

set_user_argMethod · 0.80

Tested by

no test coverage detected