OPAL
Version 3.18.8
|
#include <transports.h>
Public Member Functions | |
Construction | |
OpalListenerTCP (OpalEndPoint &endpoint, PIPSocket::Address binding=PIPSocket::GetDefaultIpAny(), WORD port=0, PBoolean exclusive=true) | |
OpalListenerTCP (OpalEndPoint &endpoint, const OpalTransportAddress &binding, OpalTransportAddress::BindOptions option) | |
~OpalListenerTCP () | |
Overrides from OpalListener | |
virtual bool | Open (const AcceptHandler &acceptHandler, ThreadMode mode=SpawnNewThreadMode) |
virtual bool | IsOpen () const |
virtual void | Close () |
virtual OpalTransport * | Accept (const PTimeInterval &timeout) |
virtual OpalTransport * | CreateTransport (const OpalTransportAddress &localAddress, const OpalTransportAddress &remoteAddress) const |
![]() | |
OpalListenerIP (OpalEndPoint &endpoint, PIPSocket::Address binding=PIPSocket::GetDefaultIpAny(), WORD port=0, PBoolean exclusive=true) | |
OpalListenerIP (OpalEndPoint &endpoint, const OpalTransportAddress &binding, OpalTransportAddress::BindOptions option) | |
virtual OpalTransportAddress | GetLocalAddress (const OpalTransportAddress &remoteAddress=OpalTransportAddress(), const OpalTransportAddress &defaultAddress=OpalTransportAddress()) const |
WORD | GetListenerPort () const |
![]() | |
OpalListener (OpalEndPoint &endpoint) | |
void | PrintOn (ostream &strm) const |
void | CloseWait () |
void | CleanUpOnTermination () |
Protected Member Functions | |
virtual const PCaselessString & | GetProtoPrefix () const |
virtual OpalTransport * | OnAccept (PTCPSocket *socket) |
![]() | |
bool | CanCreateTransport (const OpalTransportAddress &localAddress, const OpalTransportAddress &remoteAddress) const |
![]() | |
void | ListenForConnections () |
void | TransportThreadMain (OpalTransportPtr transport) |
Protected Attributes | |
PTCPSocket | m_listener |
![]() | |
PIPSocketAddressAndPort | m_binding |
bool | m_exclusiveListener |
![]() | |
OpalEndPoint & | m_endpoint |
PThread * | m_thread |
AcceptHandler | m_acceptHandler |
ThreadMode | m_threadMode |
OpalListenerTCP::OpalListenerTCP | ( | OpalEndPoint & | endpoint, |
PIPSocket::Address | binding = PIPSocket::GetDefaultIpAny() , |
||
WORD | port = 0 , |
||
PBoolean | exclusive = true |
||
) |
Create a new listener.
endpoint | Endpoint listener is used for |
binding | Local interface to listen on |
port | TCP port to listen for connections |
exclusive | Exclusive listening mode, no other process can accept on the port |
OpalListenerTCP::OpalListenerTCP | ( | OpalEndPoint & | endpoint, |
const OpalTransportAddress & | binding, | ||
OpalTransportAddress::BindOptions | option | ||
) |
endpoint | Endpoint listener is used for |
binding | Local interface to listen on |
option | OPtions for binding |
OpalListenerTCP::~OpalListenerTCP | ( | ) |
Destroy the listener thread.
|
virtual |
Accept a new incoming transport.
timeout | Time to wait for incoming connection |
Implements OpalListener.
|
virtual |
Stop the listener thread and no longer accept incoming connections.
Implements OpalListener.
|
virtual |
Create a transport compatible with this listener.
Implements OpalListener.
|
protectedvirtual |
Implements OpalListener.
|
virtual |
Indicate if the listener is open.
Implements OpalListener.
|
protectedvirtual |
|
virtual |
Open the listener. Listen for an incoming connection and create a OpalTransport of the appropriate subclass.
If notifier function acceptHandler is non-NULL a thread is spawned to listen for incoming connections. The acceptHandler is called when a new connection is created. The INT parameter to the acceptHandler is a pointer to the new OpalTransport instance created by the listener.
If singleThread is false the acceptHandler function is called in the context of a new thread and the continues to listen for more connections. If true, then the acceptHandler function is called from within the listener threads context and no more connections are created. That is only a single connection is ever created by this listener.
If acceptHandler is NULL, then no thread is started and it is assumed that the caller is responsible for calling Accept() and waiting for the new connection.
acceptHandler | Handler function for new connections |
mode | How handler function is called thread wise |
Reimplemented from OpalListener.
|
protected |