| 431 |
|
|
| 432 |
void controld::ShutdownChild(void) |
void controld::ShutdownChild(void) |
| 433 |
{ |
{ |
| 434 |
if (this->bbsd.end() == 0) |
if (this->bbsd.IsRunning()) |
| 435 |
{ |
{ |
| 436 |
syslog << logfile::log_head << "End BBSD ... OK" << endl; |
if (this->bbsd.end() == 0) |
| 437 |
} |
{ |
| 438 |
else |
syslog << logfile::log_head << "End BBSD ... OK" << endl; |
| 439 |
{ |
} |
| 440 |
syslog << logfile::log_head << "End BBSD ... Failed" << endl; |
else |
| 441 |
|
{ |
| 442 |
|
syslog << logfile::log_head << "End BBSD ... Failed" << endl; |
| 443 |
|
} |
| 444 |
} |
} |
| 445 |
|
|
| 446 |
if (this->innd.end() == 0) |
if (this->innd.IsRunning()) |
|
{ |
|
|
syslog << logfile::log_head << "End INND ... OK" << endl; |
|
|
} |
|
|
else |
|
| 447 |
{ |
{ |
| 448 |
syslog << logfile::log_head << "End INND ... Failed" << endl; |
if (this->innd.end() == 0) |
| 449 |
|
{ |
| 450 |
|
syslog << logfile::log_head << "End INND ... OK" << endl; |
| 451 |
|
} |
| 452 |
|
else |
| 453 |
|
{ |
| 454 |
|
syslog << logfile::log_head << "End INND ... Failed" << endl; |
| 455 |
|
} |
| 456 |
} |
} |
| 457 |
|
|
| 458 |
if (this->outd.end() == 0) |
if (this->outd.IsRunning()) |
|
{ |
|
|
syslog << logfile::log_head << "End OUTD ... OK" << endl; |
|
|
} |
|
|
else |
|
| 459 |
{ |
{ |
| 460 |
syslog << logfile::log_head << "End OUTD ... Failed" << endl; |
if (this->outd.end() == 0) |
| 461 |
|
{ |
| 462 |
|
syslog << logfile::log_head << "End OUTD ... OK" << endl; |
| 463 |
|
} |
| 464 |
|
else |
| 465 |
|
{ |
| 466 |
|
syslog << logfile::log_head << "End OUTD ... Failed" << endl; |
| 467 |
|
} |
| 468 |
} |
} |
| 469 |
} |
} |
| 470 |
|
|