| 254 | } |
| 255 | |
| 256 | Value HostsTable::CheckCommandExpandedAccessor(const Value& row) |
| 257 | { |
| 258 | Host::Ptr host = static_cast<Host::Ptr>(row); |
| 259 | |
| 260 | if (!host) |
| 261 | return Empty; |
| 262 | |
| 263 | CheckCommand::Ptr checkcommand = host->GetCheckCommand(); |
| 264 | if (checkcommand) |
| 265 | return CompatUtility::GetCommandName(checkcommand) + "!" + CompatUtility::GetCheckableCommandArgs(host); |
| 266 | |
| 267 | return Empty; |
| 268 | } |
| 269 | |
| 270 | Value HostsTable::EventHandlerAccessor(const Value& row) |
| 271 | { |
nothing calls this directly
no test coverage detected