#include "ace/SOCK_Acceptor.h"
#include "ace/SOCK_Connector.h"
#include "ace/SOCK_Stream.h"
#include "ace/INET_Addr.h"
#include "ace/Acceptor.h"
#include "ace/Connector.h"
#include "ace/Svc_Handler.h"
#include "ace/CDR_Stream.h"
#include "ace/Message_Block.h"
#include "ace/Task.h"
#include "ace/Thread_Manager.h"
#include "ace/Thread_Mutex.h"
#include "ace/Thread_Semaphore.h"
#include "ace/Get_Opt.h"
#include "ace/Reactor.h"
#include "ace/Service_Object.h"
#include "ace/Signal.h"
#include "ace/Handle_Set.h"
#include "ace/FILE_Addr.h"
#include "ace/OS.h"
#include "ace/os_include/os_netdb.h"
#include "ace/Log_Msg.h"
#include "ace/Synch_Options.h"
#include <BaseDef.h>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <algorithm>
#include <netinet/in.h>
Go to the source code of this file.
Namespaces | |
namespace | channel |
Classes | |
class | channel::Tcp_ConnHandler< Channel > |
class | channel::Tcp_Acceptor< Channel > |
Tcp_Acceptor: waiting for remote connections at announced address. More... | |
class | channel::Tcp_Connector< Channel > |
Tcp_Connector: connect actively to remote channel. More... | |
class | channel::TcpSockTransport< Channel > |
transport class for connection using tcp socket More... | |
Variables | |
u_short | channel::UNDEFINED_TCP_PORT = 0 |
u_short | channel::DEFAULT_TCP_PORT = 3456 |