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

Method Print

src/proxy/ControlBase.cc:693–712  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

691}
692
693void
694ControlBase::Print() const
695{
696 int n = _mods.size();
697
698 if (0 >= n) {
699 return;
700 }
701
702 printf("\t\t\t");
703 for (intptr_t i = 0; i < n; ++i) {
704 Modifier *cur_mod = _mods[i];
705 if (!cur_mod) {
706 printf("INVALID ");
707 } else {
708 cur_mod->print(stdout);
709 }
710 }
711 printf("\n");
712}
713
714const char *
715ControlBase::getSchemeModText() const

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.45
printMethod · 0.45

Tested by

no test coverage detected