#include <TcpAcceptor.h>
Public Member Functions | |
TcpAcceptor (TcpTransport *transport_impl) | |
virtual | ~TcpAcceptor () |
TcpTransport * | transport () |
void | transport_shutdown () |
TcpInst & | get_configuration () |
Private Attributes | |
TcpTransport * | transport_ |
Definition at line 23 of file TcpAcceptor.h.
OPENDDS_BEGIN_VERSIONED_NAMESPACE_DECL OpenDDS::DCPS::TcpAcceptor::TcpAcceptor | ( | TcpTransport * | transport_impl | ) |
Definition at line 21 of file TcpAcceptor.cpp.
References DBG_ENTRY_LVL.
00022 : transport_(transport_impl) 00023 { 00024 DBG_ENTRY_LVL("TcpAcceptor","TcpAcceptor",6); 00025 }
OpenDDS::DCPS::TcpAcceptor::~TcpAcceptor | ( | ) | [virtual] |
Definition at line 27 of file TcpAcceptor.cpp.
References DBG_ENTRY_LVL.
00028 { 00029 DBG_ENTRY_LVL("TcpAcceptor","~TcpAcceptor",6); 00030 }
OpenDDS::DCPS::TcpInst & OpenDDS::DCPS::TcpAcceptor::get_configuration | ( | ) |
Definition at line 33 of file TcpAcceptor.cpp.
References OpenDDS::DCPS::TcpTransport::config(), and transport_.
Referenced by OpenDDS::DCPS::TcpConnection::open().
00034 { 00035 return this->transport_->config(); 00036 }
OpenDDS::DCPS::TcpTransport * OpenDDS::DCPS::TcpAcceptor::transport | ( | void | ) |
Definition at line 39 of file TcpAcceptor.cpp.
References DBG_ENTRY_LVL, and transport_.
Referenced by OpenDDS::DCPS::TcpConnection::open().
00040 { 00041 DBG_ENTRY_LVL("TcpAcceptor","transport",6); 00042 return this->transport_; 00043 }
void OpenDDS::DCPS::TcpAcceptor::transport_shutdown | ( | ) |
Definition at line 46 of file TcpAcceptor.cpp.
References DBG_ENTRY_LVL.
00047 { 00048 DBG_ENTRY_LVL("TcpAcceptor","transport_shutdown",6); 00049 00050 }
Definition at line 41 of file TcpAcceptor.h.
Referenced by get_configuration(), and transport().