Q3ServerSocket Class

The Q3ServerSocket 類提供基於 TCP 的服務器。 更多...

頭: #include <Q3ServerSocket>
繼承: QObject

公共函數

Q3ServerSocket (Q_UINT16 port , int backlog = 1, QObject * parent = 0, const char * name = 0)
Q3ServerSocket (const QHostAddress & address , Q_UINT16 port , int backlog = 1, QObject * parent = 0, const char * name = 0)
Q3ServerSocket (QObject * parent = 0, const char * name = 0)
virtual ~Q3ServerSocket ()
QHostAddress address () const
virtual void newConnection (int socket ) = 0
bool ok () const
Q_UINT16 port () const
virtual void setSocket (int socket )
int socket () const

保護函數

Q3SocketDevice * socketDevice ()

額外繼承成員

詳細描述

The Q3ServerSocket 類提供基於 TCP 的服務器。

This class is a convenience class for accepting incoming TCP connections. You can specify the port or have Q3ServerSocket pick one, and listen on just one address or on all the machine's addresses.

Using the API is very simple: subclass Q3ServerSocket , call the constructor of your choice, and implement newConnection () to handle new incoming connections. There is nothing more to do.

(Note that due to lack of support in the underlying APIs, Q3ServerSocket cannot accept or reject connections conditionally.)

另請參閱 Q3Socket , Q3SocketDevice , QHostAddress ,和 QSocketNotifier .

成員函數文檔編製

Q3ServerSocket:: Q3ServerSocket ( Q_UINT16 port , int backlog = 1, QObject * parent = 0, const char * name = 0)

Creates a server socket object, that will serve the given port on all the addresses of this host. If port 為 0, Q3ServerSocket will pick a suitable port in a system-dependent manner. Use backlog to specify how many pending connections the server can have.

The parent and name arguments are passed on to the QObject 構造函數。

警告: On Tru64 Unix systems a value of 0 for backlog means that you don't accept any connections at all; you should specify a value larger than 0.

Q3ServerSocket:: Q3ServerSocket (const QHostAddress & address , Q_UINT16 port , int backlog = 1, QObject * parent = 0, const char * name = 0)

Creates a server socket object, that will serve the given port only on the given address 。使用 backlog to specify how many pending connections the server can have.

The parent and name arguments are passed on to the QObject 構造函數。

警告: On Tru64 Unix systems a value of 0 for backlog means that you don't accept any connections at all; you should specify a value larger than 0.

Q3ServerSocket:: Q3ServerSocket ( QObject * parent = 0, const char * name = 0)

Construct an empty server socket.

This constructor, in combination with setSocket (), allows us to use the Q3ServerSocket class as a wrapper for other socket types (e.g. Unix Domain Sockets under Unix).

The parent and name arguments are passed on to the QObject 構造函數。

另請參閱 setSocket ().

[虛擬] Q3ServerSocket:: ~Q3ServerSocket ()

銷毀套接字。

This causes any backlogged connections (connections that have reached the host, but not yet been completely set up by calling Q3SocketDevice::accept ()) to be severed.

Existing connections continue to exist; this only affects the acceptance of new connections.

QHostAddress Q3ServerSocket:: address () const

Returns the address on which this object listens, or 0.0.0.0 if this object listens on more than one address. ok () must be true before calling this function.

另請參閱 port () 和 Q3SocketDevice::address ().

[pure virtual] void Q3ServerSocket:: newConnection ( int socket )

This pure virtual function is responsible for setting up a new incoming connection. socket is the fd (file descriptor) for the newly accepted connection.

bool Q3ServerSocket:: ok () const

Returns true if the construction succeeded; otherwise returns false.

Q_UINT16 Q3ServerSocket:: port () const

Returns the port number on which this server socket listens. This is always non-zero; if you specify 0 in the constructor, Q3ServerSocket will pick a non-zero port itself. ok () must be true before calling this function.

另請參閱 address () 和 Q3SocketDevice::port ().

[虛擬] void Q3ServerSocket:: setSocket ( int socket )

Sets the socket to use socket . bind() and listen() should already have been called for socket .

This allows us to use the Q3ServerSocket class as a wrapper for other socket types (e.g. Unix Domain Sockets).

另請參閱 socket ().

int Q3ServerSocket:: socket () const

Returns the operating system socket.

另請參閱 setSocket ().

[protected] Q3SocketDevice * Q3ServerSocket:: socketDevice ()

Returns a pointer to the internal socket device. The returned pointer is 0 if there is no connection or pending connection.

There is normally no need to manipulate the socket device directly since this class does all the necessary setup for most client or server socket applications.