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

Method missingRequiredSymbolError

src/proxy/http/remap/RemapPluginInfo.cc:63–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63std::string
64RemapPluginInfo::missingRequiredSymbolError(const std::string &pluginName, const char *required, const char *requiring)
65{
66 std::string error;
67 error.assign("plugin ").append(pluginName).append(" missing required function ").append(required);
68 if (requiring) {
69 error.append(" if ").append(requiring).append(" is defined");
70 }
71 return error;
72}
73
74RemapPluginInfo::RemapPluginInfo(const fs::path &configPath, const fs::path &effectivePath, const fs::path &runtimePath)
75 : PluginDso(configPath, effectivePath, runtimePath)

Callers

nothing calls this directly

Calls 2

appendMethod · 0.45
assignMethod · 0.45

Tested by

no test coverage detected