]> git.ipfire.org Git - thirdparty/squid.git/blob - src/mgr/Command.cc
Merged from trunk
[thirdparty/squid.git] / src / mgr / Command.cc
1 /*
2 * DEBUG: section 16 Cache Manager API
3 *
4 */
5
6 #include "squid.h"
7 #include "mgr/ActionProfile.h"
8 #include "mgr/Command.h"
9
10 std::ostream &
11 operator <<(std::ostream &os, const Mgr::Command &cmd)
12 {
13 if (cmd.profile != NULL)
14 return os << *cmd.profile;
15 return os << "undef";
16 }