summaryrefslogtreecommitdiffstats
path: root/python/pyqt/sip/qtnetwork
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyqt/sip/qtnetwork')
-rw-r--r--python/pyqt/sip/qtnetwork/copying.sip51
-rw-r--r--python/pyqt/sip/qtnetwork/qdns.sip274
-rw-r--r--python/pyqt/sip/qtnetwork/qftp.sip183
-rw-r--r--python/pyqt/sip/qtnetwork/qhostaddress.sip99
-rw-r--r--python/pyqt/sip/qtnetwork/qhttp.sip279
-rw-r--r--python/pyqt/sip/qtnetwork/qlocalfs.sip56
-rw-r--r--python/pyqt/sip/qtnetwork/qnetwork.sip34
-rw-r--r--python/pyqt/sip/qtnetwork/qserversocket.sip70
-rw-r--r--python/pyqt/sip/qtnetwork/qsocket.sip348
-rw-r--r--python/pyqt/sip/qtnetwork/qsocketdevice.sip224
-rw-r--r--python/pyqt/sip/qtnetwork/qtnetworkmod.sip78
11 files changed, 0 insertions, 1696 deletions
diff --git a/python/pyqt/sip/qtnetwork/copying.sip b/python/pyqt/sip/qtnetwork/copying.sip
deleted file mode 100644
index 21c27d4e..00000000
--- a/python/pyqt/sip/qtnetwork/copying.sip
+++ /dev/null
@@ -1,51 +0,0 @@
-// This is the SIP file defining the PyQt license.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%Copying
-Copyright (c) 2007
- Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-
-This file is part of PyQt.
-
-This copy of PyQt is free software; you can redistribute it and/or modify it
-under the terms of the GNU General Public License as published by the Free
-Software Foundation; either version 2, or (at your option) any later
-version.
-
-PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-details.
-
-You should have received a copy of the GNU General Public License along with
-PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-%End
-
-
-%OptionalInclude pyqt-internal.sip
-%OptionalInclude pyqt-gpl.sip
-%OptionalInclude pyqt-commercial.sip
-%OptionalInclude pyqt-edu.sip
-%OptionalInclude pyqt-eval.sip
-%OptionalInclude pyqt-nc.sip
-%OptionalInclude pyqt-tkc.sip
diff --git a/python/pyqt/sip/qtnetwork/qdns.sip b/python/pyqt/sip/qtnetwork/qdns.sip
deleted file mode 100644
index 811fdd5b..00000000
--- a/python/pyqt/sip/qtnetwork/qdns.sip
+++ /dev/null
@@ -1,274 +0,0 @@
-// This is the SIP interface definition for QDns.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%ExportedDoc
-<Sect2><Title>QDns (Qt v2.2+)</Title>
-<Para>
-<Literal>QDns</Literal> is fully implemented.
-</Para>
-</Sect2>
-%End
-
-
-%If (Qt_DNS)
-%If (Qt_2_2_0 -)
-
-class QDns : QObject
-{
-%TypeHeaderCode
-#include <qdns.h>
-%End
-
-public:
- enum RecordType {
- None,
- A,
- Aaaa,
- Mx,
- Srv,
- Cname,
- Ptr,
- Txt
- };
-
- QDns();
- QDns(const QString &,RecordType = A);
- QDns(const QHostAddress &,RecordType = A);
-
- virtual void setLabel(const QString &);
- virtual void setLabel(const QHostAddress &);
- QString label() const;
-
- virtual void setRecordType(RecordType = A);
- RecordType recordType() const;
-
- bool isWorking() const;
-
- QValueList<QHostAddress> addresses() const;
-
- class MailServer
- {
- public:
- MailServer(const QString & = QString::null,Q_UINT16 = 0);
-
- QString name;
- Q_UINT16 priority;
- };
-
- QValueList<QDns::MailServer> mailServers() const;
-
- class Server
- {
- public:
- Server(const QString & = QString::null,Q_UINT16 = 0,
- Q_UINT16 = 0,Q_UINT16 = 0);
-
- QString name;
- Q_UINT16 priority;
- Q_UINT16 weight;
- Q_UINT16 port;
- };
-
- QValueList<QDns::Server> servers() const;
-
- QStringList hostNames() const;
-
- QStringList texts() const;
-
- QString canonicalName() const;
-
- QStringList qualifiedNames() const;
-
-signals:
- void resultsReady();
-};
-
-
-%MappedType QValueList<QHostAddress>
-{
-%TypeHeaderCode
-#include <qvaluelist.h>
-%End
-
-%ConvertFromTypeCode
- // Convert to a Python list of QHostAddress instances.
-
- int i;
- PyObject *l;
-
- // Create the list.
-
- if ((l = PyList_New(sipCpp -> count())) == NULL)
- return NULL;
-
- // Get it.
-
- i = 0;
- QValueListConstIterator<QHostAddress> it;
-
- for (it = sipCpp -> begin(); it != sipCpp -> end(); ++it)
- {
- PyObject *tmobj;
-
- if ((tmobj = sipConvertFromNewInstance(new QHostAddress(*it),sipClass_QHostAddress,sipTransferObj)) == NULL || PyList_SetItem(l,i,tmobj) < 0)
- {
- Py_XDECREF(tmobj);
- Py_DECREF(l);
-
- return NULL;
- }
-
- ++i;
- }
-
- return l;
-%End
-
-%ConvertToTypeCode
- // At the moment this will never be called, so provide a null
- // implementation.
-
- if (sipIsErr == NULL)
- return PyList_Check(sipPy);
-
- PyErr_Format(PyExc_TypeError,"Converting to QValueList<QHostAddress> not yet implemented");
-
- *sipIsErr = 1;
-
- return 0;
-%End
-};
-
-
-%MappedType QValueList<QDns::MailServer>
-{
-%TypeHeaderCode
-#include <qvaluelist.h>
-%End
-
-%ConvertFromTypeCode
- // Convert to a Python list of QDns::MailServer instances.
-
- int i;
- PyObject *l;
-
- // Create the list.
-
- if ((l = PyList_New(sipCpp -> count())) == NULL)
- return NULL;
-
- // Get it.
-
- i = 0;
- QValueListConstIterator<QDns::MailServer> it;
-
- for (it = sipCpp -> begin(); it != sipCpp -> end(); ++it)
- {
- PyObject *tmobj;
-
- if ((tmobj = sipConvertFromNewInstance(new QDns::MailServer(*it),sipClass_QDns_MailServer,sipTransferObj)) == NULL || PyList_SetItem(l,i,tmobj) < 0)
- {
- Py_XDECREF(tmobj);
- Py_DECREF(l);
-
- return NULL;
- }
-
- ++i;
- }
-
- return l;
-%End
-
-%ConvertToTypeCode
- // At the moment this will never be called, so provide a null
- // implementation.
-
- if (sipIsErr == NULL)
- return PyList_Check(sipPy);
-
- PyErr_Format(PyExc_TypeError,"Converting to QValueList<QDns::MailServer> not yet implemented");
-
- *sipIsErr = 1;
-
- return 0;
-%End
-};
-
-
-%MappedType QValueList<QDns::Server>
-{
-%TypeHeaderCode
-#include <qvaluelist.h>
-%End
-
-%ConvertFromTypeCode
- // Convert to a Python list of QDns::Server instances.
-
- int i;
- PyObject *l;
-
- // Create the list.
-
- if ((l = PyList_New(sipCpp -> count())) == NULL)
- return NULL;
-
- // Get it.
-
- i = 0;
- QValueListConstIterator<QDns::Server> it;
-
- for (it = sipCpp -> begin(); it != sipCpp -> end(); ++it)
- {
- PyObject *tmobj;
-
- if ((tmobj = sipConvertFromNewInstance(new QDns::Server(*it),sipClass_QDns_Server,sipTransferObj)) == NULL || PyList_SetItem(l,i,tmobj) < 0)
- {
- Py_XDECREF(tmobj);
- Py_DECREF(l);
-
- return NULL;
- }
-
- ++i;
- }
-
- return l;
-%End
-
-%ConvertToTypeCode
- // At the moment this will never be called, so provide a null
- // implementation.
-
- if (sipIsErr == NULL)
- return PyList_Check(sipPy);
-
- PyErr_Format(PyExc_TypeError,"Converting to QValueList<QDns::Server> not yet implemented");
-
- *sipIsErr = 1;
-
- return 0;
-%End
-};
-
-%End
-%End
diff --git a/python/pyqt/sip/qtnetwork/qftp.sip b/python/pyqt/sip/qtnetwork/qftp.sip
deleted file mode 100644
index fd696dd8..00000000
--- a/python/pyqt/sip/qtnetwork/qftp.sip
+++ /dev/null
@@ -1,183 +0,0 @@
-// This is the SIP interface definition for QFtp.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%ExportedDoc
-<Sect2><Title>QFtp (Qt v2.2+)</Title>
-<FuncSynopsis>
- <FuncDef>Q_LONG <Function>readBlock</Function></FuncDef>
- <ParamDef>char *<Parameter>data</Parameter></ParamDef>
- <ParamDef>Q_ULONG <Parameter>maxlen</Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-This takes a single <Literal>maxlen</Literal> parameter. The
-<Literal>data</Literal> is returned if there was no error, otherwise
-<Literal>None</Literal> is returned.
-</Para>
-</Sect2>
-%End
-
-
-%If (Qt_NETWORKPROTOCOL_FTP)
-%If (Qt_2_2_0 -)
-
-class QFtp : QNetworkProtocol
-{
-%TypeHeaderCode
-#include <qftp.h>
-%End
-
-public:
- QFtp();
-%If (Qt_3_1_0 -)
- QFtp(QObject * /TransferThis/,const char * = 0);
-%End
- virtual ~QFtp();
-
-%If (Qt_3_0_0 -)
- int supportedOperations() const;
-%End
-%If (- Qt_3_0_0)
- virtual int supportedOperations() const;
-%End
-
-%If (Qt_3_1_0 -)
- enum State {
- Unconnected,
- HostLookup,
- Connecting,
- Connected,
- LoggedIn,
- Closing
- };
-
- enum Error {
- NoError,
- UnknownError,
- HostNotFound,
- ConnectionRefused,
- NotConnected
- };
-
- enum Command {
- None,
- ConnectToHost,
- Login,
- Close,
- List,
- Cd,
- Get,
- Put,
- Remove,
- Mkdir,
- Rmdir,
- Rename,
- RawCommand
- };
-
- int connectToHost(const QString &,Q_UINT16 = 21) /ReleaseGIL/;
- int login(const QString & = QString::null,
- const QString & = QString::null) /ReleaseGIL/;
- int close() /ReleaseGIL/;
- int list(const QString & = QString::null) /ReleaseGIL/;
- int cd(const QString &) /ReleaseGIL/;
- int get(const QString &,QIODevice * = 0) /ReleaseGIL/;
- int put(const QByteArray &,const QString &) /ReleaseGIL/;
- int put(QIODevice *,const QString &) /ReleaseGIL/;
- int remove(const QString &) /ReleaseGIL/;
- int mkdir(const QString &) /ReleaseGIL/;
- int rmdir(const QString &) /ReleaseGIL/;
- int rename(const QString &,const QString &) /ReleaseGIL/;
-
- int rawCommand(const QString &) /ReleaseGIL/;
-
- unsigned long bytesAvailable() const;
-
- SIP_PYOBJECT readBlock(Q_ULONG) /ReleaseGIL/ [Q_LONG (char *,Q_ULONG)];
-%MethodCode
- char *buf;
-
- if ((buf = (char *)sipMalloc(a0)) == NULL)
- sipIsErr = 1;
- else
- {
- Q_LONG actlen;
-
- Py_BEGIN_ALLOW_THREADS
- actlen = sipCpp -> QFtp::readBlock(buf,a0);
- Py_END_ALLOW_THREADS
-
- if (actlen < 0)
- {
- Py_INCREF(Py_None);
- sipRes = Py_None;
- }
- else if ((sipRes = PyString_FromStringAndSize(buf,actlen)) == NULL)
- sipIsErr = 1;
-
- sipFree((ANY *)buf);
- }
-%End
-
- QByteArray readAll() /ReleaseGIL/;
-
- int currentId() const;
- QIODevice* currentDevice() const;
- Command currentCommand() const;
- bool hasPendingCommands() const;
- void clearPendingCommands();
-
- State state() const;
-
- Error error() const;
- QString errorString() const;
-%End
-
-public slots:
-%If (Qt_3_1_0 -)
- void abort();
-%End
-
-signals:
-%If (Qt_3_1_0 -)
- void stateChanged(int);
- void listInfo(const QUrlInfo &);
- void readyRead();
- void dataTransferProgress(int,int);
- void rawCommandReply(int,const QString &);
-
- void commandStarted(int);
- void commandFinished(int,bool);
- void done(bool);
-%End
-
-protected:
- void parseDir(const QString &,QUrlInfo &);
- virtual void operationListChildren(QNetworkOperation *);
- virtual void operationMkDir(QNetworkOperation *);
- virtual void operationRemove(QNetworkOperation *);
- virtual void operationRename(QNetworkOperation *);
- virtual void operationGet(QNetworkOperation *);
- virtual void operationPut(QNetworkOperation *);
-};
-
-%End
-%End
diff --git a/python/pyqt/sip/qtnetwork/qhostaddress.sip b/python/pyqt/sip/qtnetwork/qhostaddress.sip
deleted file mode 100644
index 6e737068..00000000
--- a/python/pyqt/sip/qtnetwork/qhostaddress.sip
+++ /dev/null
@@ -1,99 +0,0 @@
-// This is the SIP interface definition for QHostAddress.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%ExportedDoc
-<Sect2><Title>QHostAddress (Qt v2.2+)</Title>
-<FuncSynopsis>
- <FuncDef><Function>QHostAddress</Function></FuncDef>
- <ParamDef>Q_UINT8 *<Parameter>ip6Addr</Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-Not yet implemented.
-</Para>
-
-<FuncSynopsis>
- <FuncDef><Function>QHostAddress</Function></FuncDef>
- <ParamDef>const Q_IPV6ADDR &amp;<Parameter>ip6Addr</Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-Not yet implemented.
-</Para>
-
-<FuncSynopsis>
- <FuncDef>void <Function>setAddress</Function></FuncDef>
- <ParamDef>Q_UINT8 *<Parameter>ip6Addr</Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-Not yet implemented.
-</Para>
-
-<FuncSynopsis>
- <FuncDef>Q_IPV6ADDR <Function>toIPv6Address</Function> const</FuncDef>
- <ParamDef><Parameter></Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-Not yet implemented.
-</Para>
-</Sect2>
-%End
-
-
-%If (Qt_2_2_0 -)
-
-class QHostAddress
-{
-%TypeHeaderCode
-#include <qhostaddress.h>
-%End
-
-public:
- QHostAddress();
- QHostAddress(Q_UINT32);
-// QHostAddress(Q_UINT8 *);
-%If (Qt_3_3_0 -)
- //QHostAddress(const Q_IPV6ADDR &);
- // This isn't mentioned in the documentation.
- //QHostAddress(const QString &);
-%End
- QHostAddress(const QHostAddress &);
-
- void setAddress(Q_UINT32);
-// void setAddress(Q_UINT8 *);
- bool setAddress(const QString &);
- bool isIp4Addr() const;
- Q_UINT32 ip4Addr() const;
-
-%If (Qt_3_3_0 -)
- bool isIPv4Address() const;
- Q_UINT32 toIPv4Address() const;
- bool isIPv6Address() const;
- //Q_IPV6ADDR toIPv6Address() const;
-%End
-
- QString toString() const;
-
-%If (Qt_3_2_0 -)
- bool isNull() const;
-%End
-};
-
-%End
diff --git a/python/pyqt/sip/qtnetwork/qhttp.sip b/python/pyqt/sip/qtnetwork/qhttp.sip
deleted file mode 100644
index aafdc5b9..00000000
--- a/python/pyqt/sip/qtnetwork/qhttp.sip
+++ /dev/null
@@ -1,279 +0,0 @@
-// This is the SIP interface definition for QHttp, QHttpHeader,
-// QHttpRequestHeader and QHttpResponseHeader.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%ExportedDoc
-<Sect2><Title>QHttp (Qt v3+)</Title>
-<FuncSynopsis>
- <FuncDef>Q_LONG <Function>readBlock</Function></FuncDef>
- <ParamDef>char *<Parameter>data</Parameter></ParamDef>
- <ParamDef>Q_ULONG <Parameter>maxlen</Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-This takes a single <Literal>maxlen</Literal> parameter. The
-<Literal>data</Literal> is returned if there was no error, otherwise
-<Literal>None</Literal> is returned.
-</Para>
-</Sect2>
-
-<Sect2><Title>QHttpHeader (Qt v3.1+)</Title>
-<Para>
-<Literal>QHttpHeader</Literal> is fully implemented.
-</Para>
-</Sect2>
-
-<Sect2><Title>QHttpRequestHeader (Qt v3.1+)</Title>
-<Para>
-<Literal>QHttpRequestHeader</Literal> is fully implemented.
-</Para>
-</Sect2>
-
-<Sect2><Title>QHttpResponseHeader (Qt v3.1+)</Title>
-<Para>
-<Literal>QHttpResponseHeader</Literal> is fully implemented.
-</Para>
-</Sect2>
-%End
-
-
-%If (Qt_NETWORKPROTOCOL_HTTP)
-%If (Qt_3_1_0 -)
-
-class QHttpHeader
-{
-%TypeHeaderCode
-#include <qhttp.h>
-%End
-
-public:
- QHttpHeader();
- QHttpHeader(const QHttpHeader &);
- QHttpHeader(const QString &);
- virtual ~QHttpHeader();
-
- QString value(const QString &) const;
- void setValue(const QString &,const QString &);
- void removeValue(const QString &);
-
- QStringList keys() const;
- bool hasKey(const QString &) const;
-
- bool hasContentLength() const;
- uint contentLength() const;
- void setContentLength(int);
-
- bool hasContentType() const;
- QString contentType() const;
- void setContentType(const QString &);
-
- virtual QString toString() const;
- bool isValid() const;
-
- virtual int majorVersion() const = 0;
- virtual int minorVersion() const = 0;
-
-protected:
- virtual bool parseLine(const QString &,int);
- bool parse(const QString &);
- void setValid(bool);
-};
-
-
-class QHttpResponseHeader : QHttpHeader
-{
-%TypeHeaderCode
-#include <qhttp.h>
-%End
-
-public:
- QHttpResponseHeader();
- QHttpResponseHeader(const QHttpResponseHeader &);
-
- int statusCode() const;
- QString reasonPhrase() const;
-
- int majorVersion() const;
- int minorVersion() const;
-
- QString toString() const;
-
-protected:
- bool parseLine(const QString &,int);
-};
-
-
-class QHttpRequestHeader : QHttpHeader
-{
-%TypeHeaderCode
-#include <qhttp.h>
-%End
-
-public:
- QHttpRequestHeader();
- QHttpRequestHeader(const QString &,const QString &,int = 1,int = 1);
- QHttpRequestHeader(const QHttpRequestHeader &);
- QHttpRequestHeader(const QString &);
-
- void setRequest(const QString &,const QString &,int = 1,int = 1);
-
- QString method() const;
- QString path() const;
-
- int majorVersion() const;
- int minorVersion() const;
-
- QString toString() const;
-
-protected:
- bool parseLine(const QString &,int);
-};
-
-%End
-
-
-%If (Qt_3_0_0 -)
-
-class QHttp : QNetworkProtocol
-{
-%TypeHeaderCode
-#include <qhttp.h>
-%End
-
-public:
- QHttp();
-%If (Qt_3_1_0 -)
- QHttp(QObject * /TransferThis/,const char * = 0);
- QHttp(const QString &,Q_UINT16 = 80,QObject * /TransferThis/ = 0,
- const char * = 0);
- virtual ~QHttp();
-%End
-
- int supportedOperations() const;
-
-%If (Qt_3_1_0 -)
- enum State {
- Unconnected,
- HostLookup,
- Connecting,
- Sending,
- Reading,
- Connected,
- Closing
- };
-
- enum Error {
- NoError,
- UnknownError,
- HostNotFound,
- ConnectionRefused,
- UnexpectedClose,
- InvalidResponseHeader,
- WrongContentLength,
- Aborted
- };
-
- int setHost(const QString &,Q_UINT16 = 80);
-
- int get(const QString &,QIODevice * = 0) /ReleaseGIL/;
- int post(const QString &,QIODevice *,QIODevice * = 0) /ReleaseGIL/;
- int post(const QString &,const QByteArray &,
- QIODevice * = 0) /ReleaseGIL/;
- int head(const QString &) /ReleaseGIL/;
- int request(const QHttpRequestHeader &,QIODevice * = 0,
- QIODevice * = 0) /ReleaseGIL/;
- int request(const QHttpRequestHeader &,const QByteArray &,
- QIODevice * = 0) /ReleaseGIL/;
-
- int closeConnection();
-
- unsigned long bytesAvailable() const;
-
- SIP_PYOBJECT readBlock(Q_ULONG) /ReleaseGIL/ [Q_LONG (char *,Q_ULONG)];
-%MethodCode
- char *buf;
-
- if ((buf = (char *)sipMalloc(a0)) == NULL)
- sipIsErr = 1;
- else
- {
- Q_LONG actlen;
-
- Py_BEGIN_ALLOW_THREADS
- actlen = sipCpp -> QHttp::readBlock(buf,a0);
- Py_END_ALLOW_THREADS
-
- if (actlen < 0)
- {
- Py_INCREF(Py_None);
- sipRes = Py_None;
- }
- else if ((sipRes = PyString_FromStringAndSize(buf,actlen)) == NULL)
- sipIsErr = 1;
-
- sipFree((ANY *)buf);
- }
-%End
-
- QByteArray readAll() /ReleaseGIL/;
-
- int currentId() const;
- QIODevice *currentSourceDevice() const;
- QIODevice *currentDestinationDevice() const;
- QHttpRequestHeader currentRequest() const;
- bool hasPendingRequests() const;
- void clearPendingRequests();
-
- State state() const;
-
- Error error() const;
- QString errorString() const;
-%End
-
-public slots:
-%If (Qt_3_1_0 -)
- void abort();
-%End
-
-signals:
-%If (Qt_3_1_0 -)
- void stateChanged(int);
- void responseHeaderReceived(const QHttpResponseHeader &);
- void readyRead(const QHttpResponseHeader &);
- void dataSendProgress(int,int);
- void dataReadProgress(int,int);
-
- void requestStarted(int);
- void requestFinished(int,bool);
- void done(bool);
-%End
-
-protected:
- void operationGet(QNetworkOperation *);
- void operationPut(QNetworkOperation *);
-
-%If (Qt_3_1_0 -)
- void timerEvent(QTimerEvent *);
-%End
-};
-
-%End
-%End
diff --git a/python/pyqt/sip/qtnetwork/qlocalfs.sip b/python/pyqt/sip/qtnetwork/qlocalfs.sip
deleted file mode 100644
index d9906945..00000000
--- a/python/pyqt/sip/qtnetwork/qlocalfs.sip
+++ /dev/null
@@ -1,56 +0,0 @@
-// This is the SIP interface definition for QLocalFs.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%ExportedDoc
-<Sect2><Title>QLocalFs (Qt v2.1+)</Title>
-<Para>
-<Literal>QLocalFs</Literal> is fully implemented.
-</Para>
-</Sect2>
-%End
-
-
-%If (Qt_NETWORKPROTOCOL)
-%If (Qt_2_1_0 -)
-
-class QLocalFs : QNetworkProtocol
-{
-%TypeHeaderCode
-#include <qlocalfs.h>
-%End
-
-public:
- QLocalFs();
-
- virtual int supportedOperations() const;
-
-protected:
- virtual void operationListChildren(QNetworkOperation *);
- virtual void operationMkDir(QNetworkOperation *);
- virtual void operationRemove(QNetworkOperation *);
- virtual void operationRename(QNetworkOperation *);
- virtual void operationGet(QNetworkOperation *);
- virtual void operationPut(QNetworkOperation *);
-};
-
-%End
-%End
diff --git a/python/pyqt/sip/qtnetwork/qnetwork.sip b/python/pyqt/sip/qtnetwork/qnetwork.sip
deleted file mode 100644
index 5480d5cd..00000000
--- a/python/pyqt/sip/qtnetwork/qnetwork.sip
+++ /dev/null
@@ -1,34 +0,0 @@
-// This is the SIP interface definition for qInitNetworkProtocols.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%If (Qt_NETWORKPROTOCOL)
-%If (Qt_2_2_0 -)
-
-%ModuleHeaderCode
-#include <qglobal.h>
-#include <qnetwork.h>
-%End
-
-void qInitNetworkProtocols();
-
-%End
-%End
diff --git a/python/pyqt/sip/qtnetwork/qserversocket.sip b/python/pyqt/sip/qtnetwork/qserversocket.sip
deleted file mode 100644
index 41658dc5..00000000
--- a/python/pyqt/sip/qtnetwork/qserversocket.sip
+++ /dev/null
@@ -1,70 +0,0 @@
-// This is the SIP interface definition for QServerSocket.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%ExportedDoc
-<Sect2><Title>QServerSocket (Qt v2.2+)</Title>
-<Para>
-<Literal>QServerSocket</Literal> is fully implemented.
-</Para>
-</Sect2>
-%End
-
-
-%If (Qt_2_2_0 -)
-
-class QServerSocket : QObject
-{
-%TypeHeaderCode
-#include <qserversocket.h>
-%End
-
-public:
-%If (- Qt_3_0_0)
- QServerSocket(Q_UINT16,int = 0,QObject * /TransferThis/ = 0,
- const char * = 0);
- QServerSocket(const QHostAddress &,Q_UINT16,int = 0,
- QObject * /TransferThis/ = 0,const char * = 0);
-%End
-%If (Qt_3_0_0 -)
- QServerSocket(Q_UINT16,int = 1,QObject * /TransferThis/ = 0,
- const char * = 0);
- QServerSocket(const QHostAddress &,Q_UINT16,int = 1,
- QObject * /TransferThis/ = 0,const char * = 0);
-%End
- QServerSocket(QObject * /TransferThis/ = 0,const char * = 0);
-
- bool ok() const;
-
- Q_UINT16 port() const;
-
- int socket() const;
- virtual void setSocket(int);
-
- QHostAddress address() const ;
-
- virtual void newConnection(int) = 0;
-
-protected:
- QSocketDevice *socketDevice();
-};
-
-%End
diff --git a/python/pyqt/sip/qtnetwork/qsocket.sip b/python/pyqt/sip/qtnetwork/qsocket.sip
deleted file mode 100644
index c3e63220..00000000
--- a/python/pyqt/sip/qtnetwork/qsocket.sip
+++ /dev/null
@@ -1,348 +0,0 @@
-// This is the SIP interface definition for QSocket.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%ExportedDoc
-<Sect2><Title>QSocket (Qt v2.2+)</Title>
-<FuncSynopsis>
- <FuncDef>Q_LONG <Function>readBlock</Function></FuncDef>
- <ParamDef>char *<Parameter>data</Parameter></ParamDef>
- <ParamDef>Q_ULONG <Parameter>len</Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-This takes a single <Literal>len</Literal> parameter. The
-<Literal>data</Literal> is returned if there was no error, otherwise
-<Literal>Py_None</Literal> is returned.
-</Para>
-
-<FuncSynopsis>
- <FuncDef>Q_LONG <Function>readLine</Function></FuncDef>
- <ParamDef>char *<Parameter>data</Parameter></ParamDef>
- <ParamDef>Q_ULONG <Parameter>maxlen</Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-This takes a single <Literal>maxlen</Literal> parameter. The
-<Literal>data</Literal> is returned if there was no error, otherwise
-<Literal>Py_None</Literal> is returned.
-</Para>
-
-<FuncSynopsis>
- <FuncDef>Q_LONG <Function>writeBlock</Function></FuncDef>
- <ParamDef>const char *<Parameter>data</Parameter></ParamDef>
- <ParamDef>Q_ULONG <Parameter>len</Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-<Literal>len</Literal> is derived from <Literal>data</Literal> and not passed
-as a parameter.
-</Para>
-</Sect2>
-%End
-
-
-%If (Qt_2_2_0 -)
-
-class QSocket : QObject, QIODevice
-{
-%TypeHeaderCode
-#include <qsocket.h>
-%End
-
-public:
- enum Error {
- ErrConnectionRefused,
- ErrHostNotFound,
- ErrSocketRead
- };
-
- QSocket(QObject * /TransferThis/ = 0,const char * = 0);
-
- enum State {
- Idle,
- HostLookup,
- Connecting,
-%If (Qt_3_0_0 -)
- Connected,
-%End
-%If (- Qt_3_0_0)
- Listening,
-%End
- Closing,
- Connection
- };
-
-%ConvertToSubClassCode
- static struct class_graph {
- char *name;
- sipWrapperType **type;
- int yes, no;
- } graph[] = {
- {sipName_QServerSocket, &sipClass_QServerSocket, -1, 1},
- {sipName_QSocket, &sipClass_QSocket, -1, 2},
- {sipName_QFtp, &sipClass_QFtp, -1, 3},
- {sipName_QLocalFs, &sipClass_QLocalFs, -1, 4},
-#if QT_VERSION >= 0x030000
- {sipName_QHttp, &sipClass_QHttp, -1, 5},
-#else
- {NULL, NULL, -1, 5},
-#endif
- {sipName_QDns, &sipClass_QDns, -1, -1},
- };
-
- int i = 0;
-
- sipClass = NULL;
-
- do
- {
- struct class_graph *cg = &graph[i];
-
- if (cg->name != NULL && sipCpp->inherits(cg->name))
- {
- sipClass = *cg->type;
- i = cg->yes;
- }
- else
- i = cg->no;
- }
- while (i >= 0);
-%End
-
- State state() const;
-
- int socket() const;
- virtual void setSocket(int);
-
-%If (Qt_3_0_0 -)
- QSocketDevice *socketDevice();
- virtual void setSocketDevice(QSocketDevice *);
-%End
-
-%If (Qt_DNS)
- virtual void connectToHost(const QString &,Q_UINT16) /ReleaseGIL/;
-%End
- QString peerName() const;
-
- bool open(int) /ReleaseGIL/;
- void close() /ReleaseGIL/;
- void flush() /ReleaseGIL/;
-%If (Qt_3_0_0 -)
- Offset size() const;
- Offset at() const;
- bool at(Offset);
-%End
-%If (- Qt_3_0_0)
- uint size() const;
- int at() const;
- bool at(int);
-%End
- bool atEnd() const;
-
-%If (Qt_3_0_0 -)
- Q_ULONG bytesAvailable() const;
- Q_ULONG waitForMore(int) const /ReleaseGIL/;
- //Q_ULONG waitForMore(int,bool *) const /ReleaseGIL/;
- Q_ULONG bytesToWrite() const;
-%End
-%If (- Qt_3_0_0)
- int bytesAvailable() const;
- int waitForMore(int) const /ReleaseGIL/;
- int bytesToWrite() const;
-%End
-%If (Qt_3_1_0 -)
- void clearPendingData();
-%End
-
-%If (- Qt_3_0_0)
- SIP_PYOBJECT readBlock(uint) /ReleaseGIL/ [int (char *,uint)];
-%MethodCode
- char *buf;
-
- if ((buf = (char *)sipMalloc(a0)) == NULL)
- sipIsErr = 1;
- else
- {
- int actlen;
-
- Py_BEGIN_ALLOW_THREADS
- actlen = sipSelfWasArg ? sipCpp -> QSocket::readBlock(buf,a0) : sipCpp -> readBlock(buf,a0);
- Py_END_ALLOW_THREADS
-
- if (actlen < 0)
- {
- sipFree((ANY *)buf);
-
- Py_INCREF(Py_None);
- sipRes = Py_None;
- }
- else
- {
- sipRes = PyString_FromStringAndSize(buf,actlen);
-
- sipFree((ANY *)buf);
-
- if (sipRes == NULL)
- sipIsErr = 1;
- }
- }
-%End
-
- int writeBlock(const char * /Array/,uint /ArraySize/) /ReleaseGIL/;
-
- SIP_PYOBJECT readLine(uint) /ReleaseGIL/ [int (char *,uint)];
-%MethodCode
- char *buf;
-
- if ((buf = (char *)sipMalloc(a0)) == NULL)
- sipIsErr = 1;
- else
- {
- int actlen;
-
- Py_BEGIN_ALLOW_THREADS
- actlen = sipCpp -> readLine(buf,a0);
- Py_END_ALLOW_THREADS
-
- if (actlen < 0)
- {
- sipFree((ANY *)buf);
-
- Py_INCREF(Py_None);
- sipRes = Py_None;
- }
- else
- {
- sipRes = PyString_FromStringAndSize(buf,actlen);
-
- sipFree((ANY *)buf);
-
- if (sipRes == NULL)
- sipIsErr = 1;
- }
- }
-%End
-%End
-%If (Qt_3_0_0 -)
- SIP_PYOBJECT readBlock(Q_ULONG) /ReleaseGIL/ [Q_LONG (char *,Q_ULONG)];
-%MethodCode
- char *buf;
-
- if ((buf = (char *)sipMalloc(a0)) == NULL)
- sipIsErr = 1;
- else
- {
- Q_LONG actlen;
-
- Py_BEGIN_ALLOW_THREADS
- actlen = sipSelfWasArg ? sipCpp -> QSocket::readBlock(buf,a0) : sipCpp -> readBlock(buf,a0);
- Py_END_ALLOW_THREADS
-
- if (actlen < 0)
- {
- sipFree((ANY *)buf);
-
- Py_INCREF(Py_None);
- sipRes = Py_None;
- }
- else
- {
- sipRes = PyString_FromStringAndSize(buf,actlen);
-
- sipFree((ANY *)buf);
-
- if (sipRes == NULL)
- sipIsErr = 1;
- }
- }
-%End
-
- Q_LONG writeBlock(const char * /Array/,
- Q_ULONG /ArraySize/) /ReleaseGIL/;
-
- SIP_PYOBJECT readLine(Q_ULONG) /ReleaseGIL/ [Q_LONG (char *,Q_ULONG)];
-%MethodCode
- char *buf;
-
- if ((buf = (char *)sipMalloc(a0)) == NULL)
- sipIsErr = 1;
- else
- {
- Q_LONG actlen;
-
- Py_BEGIN_ALLOW_THREADS
- actlen = sipCpp -> readLine(buf,a0);
- Py_END_ALLOW_THREADS
-
- if (actlen < 0)
- {
- sipFree((ANY *)buf);
-
- Py_INCREF(Py_None);
- sipRes = Py_None;
- }
- else
- {
- sipRes = PyString_FromStringAndSize(buf,actlen);
-
- sipFree((ANY *)buf);
-
- if (sipRes == NULL)
- sipIsErr = 1;
- }
- }
-%End
-%End
-
- int getch() /ReleaseGIL/;
- int putch(int) /ReleaseGIL/;
- int ungetch(int);
-
- bool canReadLine() const;
- virtual QString readLine() /ReleaseGIL/;
-
- Q_UINT16 port() const;
- Q_UINT16 peerPort() const;
- QHostAddress address() const;
- QHostAddress peerAddress() const;
-
-%If (Qt_3_2_0 -)
- void setReadBufferSize(Q_ULONG);
- Q_ULONG readBufferSize() const;
-%End
-
-signals:
- void hostFound();
- void connected();
- void connectionClosed();
- void delayedCloseFinished();
- void readyRead();
- void bytesWritten(int);
- void error(int);
-
-protected:
-%If (- Qt_3_0_0)
- QSocketDevice *socketDevice();
-%End
-
-private:
- QSocket(const QSocket &);
-};
-
-%End
diff --git a/python/pyqt/sip/qtnetwork/qsocketdevice.sip b/python/pyqt/sip/qtnetwork/qsocketdevice.sip
deleted file mode 100644
index 6e664582..00000000
--- a/python/pyqt/sip/qtnetwork/qsocketdevice.sip
+++ /dev/null
@@ -1,224 +0,0 @@
-// This is the SIP interface definition for QSocketDevice.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%ExportedDoc
-<Sect2><Title>QSocketDevice (Qt v2.2+)</Title>
-<FuncSynopsis>
- <FuncDef>Q_LONG <Function>readBlock</Function></FuncDef>
- <ParamDef>char *<Parameter>data</Parameter></ParamDef>
- <ParamDef>Q_ULONG <Parameter>len</Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-This takes a single <Literal>len</Literal> parameter. The
-<Literal>data</Literal> is returned if there was no error, otherwise
-<Literal>None</Literal> is returned.
-</Para>
-
-<FuncSynopsis>
- <FuncDef>Q_LONG <Function>writeBlock</Function></FuncDef>
- <ParamDef>const char *<Parameter>data</Parameter></ParamDef>
- <ParamDef>Q_ULONG <Parameter>len</Parameter></ParamDef>
-</FuncSynopsis>
-<Para>
-<Literal>len</Literal> is derived from <Literal>data</Literal> and not passed
-as a parameter.
-</Para>
-</Sect2>
-%End
-
-
-%If (Qt_2_2_0 -)
-
-class QSocketDevice : QIODevice
-{
-%TypeHeaderCode
-#include <qsocketdevice.h>
-%End
-
-public:
- enum Type {
- Stream,
- Datagram
- };
-
-%If (Qt_3_3_0 -)
- enum Protocol {
- IPv4,
- IPv6,
- Unknown
- };
-%End
-
- QSocketDevice(Type = Stream);
-%If (Qt_3_3_0 -)
- QSocketDevice(Type,Protocol,int);
-%End
- QSocketDevice(int,Type);
-
- bool isValid() const;
- Type type() const;
-%If (Qt_3_3_0 -)
- Protocol protocol() const;
-%End
-
- int socket() const;
- virtual void setSocket(int,Type);
-
- bool open(int) /ReleaseGIL/;
- void close();
- void flush() /ReleaseGIL/;
-
-%If (- Qt_3_0_0)
- uint size() const;
- int at() const;
- bool at(int);
-%End
-%If (Qt_3_0_0 -)
- Offset size() const;
- Offset at() const;
- bool at(Offset);
-%End
- bool atEnd() const;
-
- bool blocking() const;
- virtual void setBlocking(bool);
-
- bool addressReusable() const;
- virtual void setAddressReusable(bool);
-
- int receiveBufferSize() const;
- virtual void setReceiveBufferSize(uint);
- int sendBufferSize() const;
- virtual void setSendBufferSize(uint);
-
- virtual bool connect(const QHostAddress &,Q_UINT16);
-
- virtual bool bind(const QHostAddress &,Q_UINT16);
- virtual bool listen(int);
- virtual int accept();
-
-%If (- Qt_3_0_0)
- int bytesAvailable() const;
- int waitForMore(int) const /ReleaseGIL/;
-%End
-%If (Qt_3_0_0 -)
- Q_LONG bytesAvailable() const;
- Q_LONG waitForMore(int) const /ReleaseGIL/;
-%End
-
-%If (- Qt_3_0_0)
- SIP_PYOBJECT readBlock(uint) /ReleaseGIL/ [int (char *,uint)];
-%MethodCode
- char *buf;
-
- if ((buf = (char *)sipMalloc(a0)) == NULL)
- sipIsErr = 1;
- else
- {
- int actlen;
-
- Py_BEGIN_ALLOW_THREADS
- actlen = sipSelfWasArg ? sipCpp -> QSocketDevice::readBlock(buf,a0) : sipCpp -> readBlock(buf,a0);
- Py_END_ALLOW_THREADS
-
- if (actlen < 0)
- {
- Py_INCREF(Py_None);
- sipRes = Py_None;
- }
- else if ((sipRes = PyString_FromStringAndSize(buf,actlen)) == NULL)
- sipIsErr = 1;
-
- sipFree((ANY *)buf);
- }
-%End
-
- int writeBlock(const char * /Array/,uint /ArraySize/) /ReleaseGIL/;
- virtual int writeBlock(const char * /Array/,uint /ArraySize/,
- const QHostAddress &,Q_UINT16) /ReleaseGIL/;
-%End
-%If (Qt_3_0_0 -)
- SIP_PYOBJECT readBlock(Q_ULONG) /ReleaseGIL/ [Q_LONG (char *,Q_ULONG)];
-%MethodCode
- char *buf;
-
- if ((buf = (char *)sipMalloc(a0)) == NULL)
- sipIsErr = 1;
- else
- {
- Q_LONG actlen;
-
- Py_BEGIN_ALLOW_THREADS
- actlen = sipSelfWasArg ? sipCpp -> QSocketDevice::readBlock(buf,a0) : sipCpp -> readBlock(buf,a0);
- Py_END_ALLOW_THREADS
-
- if (actlen < 0)
- {
- Py_INCREF(Py_None);
- sipRes = Py_None;
- }
- else if ((sipRes = PyString_FromStringAndSize(buf,actlen)) == NULL)
- sipIsErr = 1;
-
- sipFree((ANY *)buf);
- }
-%End
-
-
- Q_LONG writeBlock(const char * /Array/,
- Q_ULONG /ArraySize/) /ReleaseGIL/;
- virtual Q_LONG writeBlock(const char * /Array/,Q_ULONG /ArraySize/,
- const QHostAddress &,Q_UINT16) /ReleaseGIL/;
-%End
-
- int getch();
- int putch(int);
- int ungetch(int);
-
- Q_UINT16 port() const;
- Q_UINT16 peerPort() const;
- QHostAddress address() const;
- QHostAddress peerAddress() const;
-
- enum Error {
- NoError,
- AlreadyBound,
- Inaccessible,
- NoResources,
- Bug,
- Impossible,
- NoFiles,
- ConnectionRefused,
- NetworkFailure,
- UnknownError
- };
-
- Error error() const;
-
-protected:
- void setError(Error);
-
-private:
- QSocketDevice(const QSocketDevice &);
-};
-
-%End
diff --git a/python/pyqt/sip/qtnetwork/qtnetworkmod.sip b/python/pyqt/sip/qtnetwork/qtnetworkmod.sip
deleted file mode 100644
index 24ede37a..00000000
--- a/python/pyqt/sip/qtnetwork/qtnetworkmod.sip
+++ /dev/null
@@ -1,78 +0,0 @@
-// This is the SIP interface definition for the qtnetwork module of PyQt.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%Module qtnetwork 1
-
-%Import qt/qtmod.sip
-
-%Include copying.sip
-
-
-%Include qdns.sip
-%Include qhostaddress.sip
-%Include qftp.sip
-%Include qhttp.sip
-%Include qlocalfs.sip
-%Include qnetwork.sip
-%Include qserversocket.sip
-%Include qsocket.sip
-%Include qsocketdevice.sip
-
-
-// The build file template.
-
-%Makefile qtnetwork.pro.in
-# The project file for the qtnetwork module.
-#
-# Copyright (c) 2007
-# Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-#
-# This file is part of PyQt.
-#
-# This copy of PyQt is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by the Free
-# Software Foundation; either version 2, or (at your option) any later
-# version.
-#
-# PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-# details.
-#
-# You should have received a copy of the GNU General Public License along with
-# PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-TEMPLATE = lib
-TARGET = @BLX_TARGET_LIB@
-DESTDIR = @PYQT_MODDIR@
-CONFIG += @BLX_CONFIG_LIB@ @PYQT_WARN@
-INCLUDEPATH = @BLX_INCLUDEPATH@
-DEFINES = @BLX_DEFINES@
-LIBS += @PYQT_QT_MODULE@ @BLX_LIBS@
-macx:QMAKE_LFLAGS += -framework Python
-
-SOURCES = $B
-
-HEADERS = $H
-%End