MCPcopy Create free account
hub / github.com/Icinga/icinga2 / EscapeString

Method EscapeString

lib/icinga/compatutility.cpp:290–295  ·  view source on GitHub ↗

Helper for DB IDO and Livestatus. */

Source from the content-addressed store, hash-verified

288
289/* Helper for DB IDO and Livestatus. */
290String CompatUtility::EscapeString(const String& str)
291{
292 String result = str;
293 boost::algorithm::replace_all(result, "\n", "\\n");
294 return result;
295}
296
297/* Used in ExternalCommandListener. */
298String CompatUtility::UnEscapeString(const String& str)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected