⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qsocketdevice.3qt

📁 linux下GUI编程工具qt的在线连接帮助手册
💻 3QT
字号:
'\" t.TH QSocketDevice 3qt "11 October 2001" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS.  All rights reserved.  See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQSocketDevice \- Platform-independent low-level socket API.PP\fC#include <qsocketdevice.h>\fR.PPInherits QIODevice..PP.SS "Public Members".in +1c.ti -1c.BI "enum \fBType\fR { Stream, Datagram }".br.ti -1c.BI "\fBQSocketDevice\fR ( Type type = Stream )".br.ti -1c.BI "\fBQSocketDevice\fR ( int socket, Type type )".br.ti -1c.BI "virtual \fB~QSocketDevice\fR ()".br.ti -1c.BI "bool \fBisValid\fR () const".br.ti -1c.BI "Type \fBtype\fR () const".br.ti -1c.BI "int \fBsocket\fR () const".br.ti -1c.BI "virtual void \fBsetSocket\fR ( int socket, Type type )".br.ti -1c.BI "bool \fBblocking\fR () const".br.ti -1c.BI "virtual void \fBsetBlocking\fR ( bool enable )".br.ti -1c.BI "bool \fBaddressReusable\fR () const".br.ti -1c.BI "virtual void \fBsetAddressReusable\fR ( bool enable )".br.ti -1c.BI "int \fBreceiveBufferSize\fR () const".br.ti -1c.BI "virtual void \fBsetReceiveBufferSize\fR ( uint size )".br.ti -1c.BI "int \fBsendBufferSize\fR () const".br.ti -1c.BI "virtual void \fBsetSendBufferSize\fR ( uint size )".br.ti -1c.BI "virtual bool \fBconnect\fR ( const QHostAddress & addr, Q_UINT16 port )".br.ti -1c.BI "virtual bool \fBbind\fR ( const QHostAddress & address, Q_UINT16 port )".br.ti -1c.BI "virtual bool \fBlisten\fR ( int backlog )".br.ti -1c.BI "virtual int \fBaccept\fR ()".br.ti -1c.BI "Q_LONG \fBbytesAvailable\fR () const".br.ti -1c.BI "Q_LONG \fBwaitForMore\fR ( int msecs, bool * timeout = 0 ) const".br.ti -1c.BI "virtual Q_LONG \fBreadBlock\fR ( char * data, Q_ULONG maxlen )".br.ti -1c.BI "virtual Q_LONG \fBwriteBlock\fR ( const char * data, Q_ULONG len )".br.ti -1c.BI "virtual Q_LONG \fBwriteBlock\fR ( const char * data, Q_ULONG len, const QHostAddress & host, Q_UINT16 port )".br.ti -1c.BI "Q_UINT16 \fBport\fR () const".br.ti -1c.BI "Q_UINT16 \fBpeerPort\fR () const".br.ti -1c.BI "QHostAddress \fBaddress\fR () const".br.ti -1c.BI "QHostAddress \fBpeerAddress\fR () const".br.ti -1c.BI "enum \fBError\fR { NoError, AlreadyBound, Inaccessible, NoResources, Bug, Impossible, NoFiles, ConnectionRefused, NetworkFailure, UnknownError }".br.ti -1c.BI "Error \fBerror\fR () const".br.in -1c.SS "Protected Members".in +1c.ti -1c.BI "void \fBsetError\fR ( Error err )".br.in -1c.SH DESCRIPTIONThe QSocketDevice class provides a platform-independent low-level socket API..PPThis class is not really intended for use outside Qt. It can be used to achieve some things that QSocket does not provide, but it's not particularly easy to understand or use..PPThe essential purpose of the class is to provide a QIODevice that works on sockets, wrapped in a platform-independent API..PPSee also QSocket, QSocketNotifier, QHostAddress and Input/Output and Networking..SS "Member Type Documentation".SH "QSocketDevice::Error"This enum type describes the error states of QSocketDevice. At present these errors are defined:.TP\fCQSocketDevice::NoError\fR - all is fine..TP\fCQSocketDevice::AlreadyBound\fR - bind() said so..TP\fCQSocketDevice::Inaccessible\fR - the operating system or firewall prohibits something..TP\fCQSocketDevice::NoResources\fR - the operating system ran out of something..TP\fCQSocketDevice::Bug\fR - there seems to be a bug in QSocketDevice..TP\fCQSocketDevice::Impossible\fR - the impossible happened, usually because you confused QSocketDevice horribly. Simple example:.IP.nf.br  ::close( sd->socket() );.br  sd->writeBlock( someData, 42 );.br.fiThe libc ::close() closes the socket, but QSocketDevice is not aware of this. So when you call writeBlock(), the impossible happens..TP\fCQSocketDevice::NoFiles\fR - the operating system will not let QSocketDevice open another file..TP\fCQSocketDevice::ConnectionRefused\fR - a connection attempt was rejected by the peer..TP\fCQSocketDevice::NetworkFailure\fR - there is a network failure between this host and... and whatever..TP\fCQSocketDevice::UnknownError\fR - the operating system reacted in a way that the Qt developers did not foresee..SH "QSocketDevice::Type"This enum type describes the type of the socket:.TP\fCQSocketDevice::Stream\fR - a stream socket (TCP, usually).TP\fCQSocketDevice::Datagram\fR - a datagram socket (UDP, usually).SH MEMBER FUNCTION DOCUMENTATION.SH "QSocketDevice::QSocketDevice ( Type type = Stream )"Creates a QSocketDevice object for a stream or datagram socket..PPThe \fItype\fR argument must be either QSocketDevice::Stream for a reliable, connection-oriented TCP socket, or QSocketDevice::Datagram for an unreliable UDP socket..PPSee also blocking()..SH "QSocketDevice::QSocketDevice ( int socket, Type type )"Creates a QSocketDevice object for the existing socket \fIsocket\fR..PPThe \fItype\fR argument must match the actual socket type; use QSocketDevice::Stream for a reliable, connection-oriented TCP socket, or QSocketDevice::Datagram for an unreliable, connectionless UDP socket..SH "QSocketDevice::~QSocketDevice ()\fC [virtual]\fR"Destroys the socket device and closes the socket if it is open..SH "int QSocketDevice::accept ()\fC [virtual]\fR"Extracts the first connection from the queue of pending connections for this socket and returns a new socket identifier. Returns -1 if the operation failed..PPSee also bind() and listen()..SH "QHostAddress QSocketDevice::address () const"Returns the address of this socket device. This may be 0.0.0.0 for a while, but is set to something sensible when there is a sensible value it can have..SH "bool QSocketDevice::addressReusable () const"Returns TRUE if the address of this socket can be used by other sockets at the same time, and FALSE if this socket claims exclusive ownership..PPSee also setAddressReusable()..SH "bool QSocketDevice::bind ( const QHostAddress & address, Q_UINT16 port )\fC [virtual]\fR"Assigns a name to an unnamed socket. The name is the host address \fIaddress\fR and the port number \fIport\fR. If the operation succeeds, bind() returns TRUE. Otherwise, it returns FALSE without changing what port() and address() return..PPbind() is used by servers for setting up incoming connections. Call bind() before listen()..SH "bool QSocketDevice::blocking () const"Returns TRUE if the socket is in blocking mode, or FALSE if it is in nonblocking mode or if the socket is invalid..PPNote that this function does not set error()..PP\fBWarning:\fR On Windows, this function always returns TRUE since the ioctlsocket() function is broken..PPSee also setBlocking() and isValid()..SH "Q_LONG QSocketDevice::bytesAvailable () const"Returns the number of bytes available for reading, or -1 if an error occurred..PP\fBWarning:\fR On Microsoft Windows, we use the ioctlsocket() function to determine the number of bytes queued on the socket. According to Microsoft (KB Q125486), ioctlsocket() sometimes return an incorrect number. The only safe way to determine the amount of data on the socket is to read it using readBlock(). QSocket has workarounds to deal with this problem..SH "bool QSocketDevice::connect ( const QHostAddress & addr, Q_UINT16 port )\fC [virtual]\fR"Connects to the IP address and port specified by \fIaddr\fR and \fIport\fR. Returns TRUE if it establishes a connection, and FALSE if not. error() explains why..PPNote that error() commonly returns NoError for non-blocking sockets; this just means that you can call connect() again in a little while and it'll probably succeed..SH "Error QSocketDevice::error () const"Returns the first error seen..SH "bool QSocketDevice::isValid () const"Returns TRUE if this is a valid socket; otherwise returns FALSE..PPSee also socket()..SH "bool QSocketDevice::listen ( int backlog )\fC [virtual]\fR"Specifies how many pending connections a server socket can have. Returns TRUE if the operation was successful, otherwise FALSE..PPThe listen() call only applies to sockets where type() is Stream, not Datagram sockets. listen() must not be called before bind() or after accept(). It is common to use a \fIbacklog\fR value of 50 on most Unix systems..PPSee also bind() and accept()..SH "QHostAddress QSocketDevice::peerAddress () const"Returns the address of the port this socket device is connected to. This may be 0.0.0.0 for a while, but is set to something sensible when there is a sensible value it can have..PPNote that for Datagram sockets, this is the source port of the last packet received, and that it is in native byte order..SH "Q_UINT16 QSocketDevice::peerPort () const"Returns the port number of the port this socket device is connected to. This may be 0 for a while, but is set to something sensible when there is a sensible value it can have..PPNote that for Datagram sockets, this is the source port of the last packet received..SH "Q_UINT16 QSocketDevice::port () const"Returns the port number of this socket device. This may be 0 for a while, but is set to something sensible when there is a sensible value it can have..PPNote that Qt always uses native byte order, i.e. 67 is 67 in Qt, there is no need to call htons()..SH "Q_LONG QSocketDevice::readBlock ( char * data, Q_ULONG maxlen )\fC [virtual]\fR"Reads max \fImaxlen\fR bytes from the socket into \fIdata\fR and returns the number of bytes read. Returns -1 if an error occurred..PPReimplemented from QIODevice..SH "int QSocketDevice::receiveBufferSize () const"Returns the size of the OS receive buffer..PPSee also setReceiveBufferSize()..SH "int QSocketDevice::sendBufferSize () const"Returns the size of the OS send buffer..PPSee also setSendBufferSize()..SH "void QSocketDevice::setAddressReusable ( bool enable )\fC [virtual]\fR"Sets the address of this socket to be usable by other sockets too if \fIenable\fR is TRUE, and to be used exclusively by this socket if \fIenable\fR is FALSE..PPWhen a socket is reusable, other sockets can use the same port number (and IP address), which is, in general, good. Of course other sockets cannot use the same (address,port,peer-address,peer-port) 4-tuple as this socket, so there is no risk of confusing the two TCP connections..PPSee also addressReusable()..SH "void QSocketDevice::setBlocking ( bool enable )\fC [virtual]\fR"Makes the socket blocking if \fIenable\fR is TRUE or nonblocking if \fIenable\fR is FALSE..PPSockets are blocking by default, but we recommend using nonblocking socket operations, especially for GUI programs that need to be responsive..PP\fBWarning:\fR On Windows, this function does nothing since the ioctlsocket() function is broken..PPWhenever you use a QSocketNotifier on Windows, the socket is immediately made nonblocking..PPSee also blocking() and isValid()..SH "void QSocketDevice::setError ( Error err )\fC [protected]\fR"Allows subclasses to set the error state to \fIerr\fR..SH "void QSocketDevice::setReceiveBufferSize ( uint size )\fC [virtual]\fR"Sets the size of the OS receive buffer to \fIsize\fR..PPThe OS receive buffer size effectively limits two things: how much data can be in transit at any one moment, and how much data can be received in one iteration of the main event loop..PPThe default is OS-dependent. A socket that receives large amounts of data is probably best off with a buffer size of 49152..SH "void QSocketDevice::setSendBufferSize ( uint size )\fC [virtual]\fR"Sets the size of the OS send buffer to \fIsize\fR..PPThe OS send buffer size effectively limits how much data can be in transit at any one moment..PPThe default is OS-dependent. A socket that sends large amounts of data is probably best off with a buffer size of 49152..SH "void QSocketDevice::setSocket ( int socket, Type type )\fC [virtual]\fR"Sets the socket device to operate on the existing socket \fIsocket\fR..PPThe \fItype\fR argument must match the actual socket type; use QSocketDevice::Stream for a reliable, connection-oriented TCP socket, or QSocketDevice::Datagram for an unreliable, connectionless UDP socket..PPAny existing socket is closed..PPSee also isValid() and close()..SH "int QSocketDevice::socket () const"Returns the socket number, or -1 if it is an invalid socket..PPSee also isValid() and type()..SH "Type QSocketDevice::type () const"Returns the socket type which is either QSocketDevice::Stream or QSocketDevice::Datagram..PPSee also socket()..SH "Q_LONG QSocketDevice::waitForMore ( int msecs, bool * timeout = 0 ) const"Wait up to \fImsecs\fR milliseconds for more data to be available. If \fImsecs\fR is -1 the call will block indefinitely..PPThis is a blocking call and should be avoided in event driven applications..PPReturns the number of bytes available for reading, or -1 if an error occurred..PPIf \fItimeout\fR is non-null and no error occurred (i.e. it does not return -1), then this function sets \fItimeout\fR out to TRUE, if the reason for returning was that the timeout was reached, otherwise it sets \fItimeout\fR to FALSE. This is useful to find out if the peer closed the connection..PPSee also bytesAvailable()..SH "Q_LONG QSocketDevice::writeBlock ( const char * data, Q_ULONG len )\fC [virtual]\fR"Writes \fIlen\fR bytes to the socket from \fIdata\fR and returns the number of bytes written. Returns -1 if an error occurred..PPThis is used for QSocketDevice::Stream sockets..PPReimplemented from QIODevice..SH "Q_LONG QSocketDevice::writeBlock ( const char * data, Q_ULONG len, const QHostAddress & host, Q_UINT16 port )\fC [virtual]\fR"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPWrites \fIlen\fR bytes to the socket from \fIdata\fR and returns the number of bytes written. Returns -1 if an error occurred..PPThis is used for QSocketDevice::Datagram sockets. You have to specify the\fIhost\fR and \fIport\fR of the destination of the data..SH "SEE ALSO".BR http://doc.trolltech.com/qsocketdevice.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qsocketdevice.3qt) and the Qtversion (3.0.0).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -