Contents Up Previous Next

wxTCPServer

A wxTCPServer object represents the server part of a client-server conversation. It emulates a DDE-style protocol, but uses TCP/IP which is available on most platforms.

A DDE-based implementation for Windows is available using wxDDEServer.

Derived from

wxServerBase
wxObject

Include files

<wx/sckipc.h>

See also

wxTCPClient, wxTCPConnection, IPC overview

Members

wxTCPServer::wxTCPServer
wxTCPServer::Create
wxTCPServer::OnAcceptConnection


wxTCPServer::wxTCPServer

wxTCPServer()

Constructs a server object.


wxTCPServer::Create

bool Create(const wxString& service)

Registers the server using the given service name. Under Unix, the string must contain an integer id which is used as an Internet port number. false is returned if the call failed (for example, the port number is already in use).


wxTCPServer::OnAcceptConnection

virtual wxConnectionBase * OnAcceptConnection(const wxString& topic)

When a client calls MakeConnection, the server receives the message and this member is called. The application should derive a member to intercept this message and return a connection object of either the standard wxTCPConnection type, or of a user-derived type. If the topic is "STDIO'', the application may wish to refuse the connection. Under Unix, when a server is created the OnAcceptConnection message is always sent for standard input and output.