void OutputMessagePool::configureOutputMessage(OutputMessage_ptr msg, Protocol* protocol, bool autosend) { TRACK_MESSAGE(msg); msg->Reset(); if(autosend) { msg->setState(OutputMessage::STATE_ALLOCATED); m_autoSendOutputMessages.push_back(msg); } else msg->setState(OutputMessage::STATE_ALLOCATED_NO_AUTOSEND); Connection_ptr connection = protocol->getConnection(); assert(connection != NULL); msg->setProtocol(protocol); protocol->addRef(); #ifdef __DEBUG_NET_DETAIL__ std::cout << "Adding reference to protocol - " << protocol << std::endl; #endif msg->setConnection(connection); connection->addRef(); #ifdef __DEBUG_NET_DETAIL__ std::cout << "Adding reference to connection - " << connection << std::endl; #endif msg->setFrame(m_frameTime); }
void OutputMessagePool::configureOutputMessage(OutputMessage_ptr msg, Protocol* protocol, bool autosend) { msg->Reset(); if (autosend) { msg->setState(OutputMessage::STATE_ALLOCATED); m_autoSendOutputMessages.push_back(msg); } else { msg->setState(OutputMessage::STATE_ALLOCATED_NO_AUTOSEND); } Connection_ptr connection = protocol->getConnection(); assert(connection); msg->setProtocol(protocol); protocol->addRef(); msg->setConnection(connection); connection->addRef(); msg->setFrame(m_frameTime); }