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

Function REC_readString

src/records/RecCore.cc:984–995  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

982}
983
984RecString
985REC_readString(const char *name, bool *found, bool lock)
986{
987 ink_assert(name);
988 RecString _tmp = nullptr;
989 bool _found = (RecGetRecordString_Xmalloc(name, &_tmp, lock) == REC_ERR_OKAY);
990
991 if (found) {
992 *found = _found;
993 }
994 return _tmp;
995}
996
997//-------------------------------------------------------------------------
998// RecConfigReadConfigDir

Callers 4

loadConfigMethod · 0.85
registerFileFunction · 0.85
reconfigure_diagsMethod · 0.85
syslog_log_configureFunction · 0.85

Calls 1

Tested by

no test coverage detected