* @brief Add a new connection to the list of connections * we're aware of to this soar kernel. *************************************************************/
| 322 | * we're aware of to this soar kernel. |
| 323 | *************************************************************/ |
| 324 | void KernelSML::AddConnection(Connection* pConnection) |
| 325 | { |
| 326 | m_pConnectionManager->AddConnection(pConnection) ; |
| 327 | |
| 328 | // Notify listeners that we have a new connection. |
| 329 | this->FireSystemEvent(smlEVENT_AFTER_CONNECTION) ; |
| 330 | } |
| 331 | |
| 332 | /************************************************************* |
| 333 | * @brief Receive and process any messages from remote connections |
no outgoing calls
no test coverage detected