KDECore
#include <k3httproxysocketdevice.h>

Public Member Functions | |
KHttpProxySocketDevice (const KResolverEntry &proxy) | |
KHttpProxySocketDevice (const KSocketBase *=0L) | |
virtual | ~KHttpProxySocketDevice () |
virtual int | capabilities () const |
virtual void | close () |
virtual bool | connect (const KResolverEntry &address) |
virtual bool | connect (const QString &name, const QString &service) |
virtual KSocketAddress | externalAddress () const |
virtual KSocketAddress | peerAddress () const |
const KResolverEntry & | proxyServer () const |
void | setProxyServer (const KResolverEntry &proxy) |
![]() | |
KSocketDevice (const KSocketBase *=0L, QObject *objparent=0L) | |
KSocketDevice (int fd, OpenMode mode=ReadWrite) | |
KSocketDevice (QObject *parent) | |
virtual | ~KSocketDevice () |
virtual KSocketDevice * | accept () |
virtual bool | bind (const KResolverEntry &address) |
virtual qint64 | bytesAvailable () const |
virtual int | capabilities () const |
virtual void | close () |
virtual bool | connect (const KResolverEntry &address, OpenMode mode=ReadWrite) |
bool | create (const KResolverEntry &address) |
virtual bool | create (int family, int type, int protocol) |
virtual bool | disconnect () |
QSocketNotifier * | exceptionNotifier () const |
virtual KSocketAddress | externalAddress () const |
virtual bool | flush () |
virtual bool | listen (int backlog=5) |
virtual KSocketAddress | localAddress () const |
virtual qint64 | peekData (char *data, qint64 maxlen, KSocketAddress *from=0L) |
virtual KSocketAddress | peerAddress () const |
virtual bool | poll (bool *input, bool *output, bool *exception=0L, int timeout=-1, bool *timedout=0L) |
bool | poll (int timeout=-1, bool *timedout=0L) |
virtual qint64 | readData (char *data, qint64 maxlen, KSocketAddress *from=0L) |
QSocketNotifier * | readNotifier () const |
virtual bool | setSocketOptions (int opts) |
int | socket () const |
virtual qint64 | waitForMore (int msecs, bool *timeout=0L) |
virtual qint64 | writeData (const char *data, qint64 len, const KSocketAddress *to=0L) |
QSocketNotifier * | writeNotifier () const |
![]() | |
KActiveSocketBase (QObject *parent) | |
virtual | ~KActiveSocketBase () |
virtual bool | atEnd () const |
virtual bool | bind (const KResolverEntry &address)=0 |
virtual bool | connect (const KResolverEntry &address, OpenMode mode=ReadWrite)=0 |
virtual bool | disconnect ()=0 |
QString | errorString () const |
virtual bool | isSequential () const |
virtual KSocketAddress | localAddress () const =0 |
virtual bool | open (OpenMode mode) |
qint64 | peek (char *data, qint64 maxlen) |
qint64 | peek (char *data, qint64 maxlen, KSocketAddress &from) |
virtual KSocketAddress | peerAddress () const =0 |
virtual qint64 | pos () const |
qint64 | read (char *data, qint64 maxlen) |
qint64 | read (char *data, qint64 maxlen, KSocketAddress &from) |
QByteArray | read (qint64 len) |
virtual bool | seek (qint64) |
virtual void | setSocketDevice (KSocketDevice *device) |
virtual qint64 | size () const |
void | ungetChar (char) |
virtual qint64 | waitForMore (int msecs, bool *timeout=0L)=0 |
qint64 | write (const char *data, qint64 len) |
qint64 | write (const char *data, qint64 len, const KSocketAddress &to) |
qint64 | write (const QByteArray &data) |
![]() | |
KSocketBase () | |
virtual | ~KSocketBase () |
bool | addressReuseable () const |
bool | blocking () const |
bool | broadcast () const |
SocketError | error () const |
QString | errorString () const |
bool | isIPv6Only () const |
QMutex * | mutex () const |
bool | noDelay () const |
virtual bool | setAddressReuseable (bool enable) |
virtual bool | setBlocking (bool enable) |
virtual bool | setBroadcast (bool enable) |
virtual bool | setIPv6Only (bool enable) |
virtual bool | setNoDelay (bool enable) |
int | setRequestedCapabilities (int add, int remove=0) |
virtual void | setSocketDevice (KSocketDevice *device) |
KSocketDevice * | socketDevice () const |
![]() | |
KPassiveSocketBase () | |
virtual | ~KPassiveSocketBase () |
virtual KActiveSocketBase * | accept ()=0 |
virtual bool | bind (const KResolverEntry &address)=0 |
virtual void | close ()=0 |
virtual KSocketAddress | externalAddress () const =0 |
virtual bool | listen (int backlog)=0 |
virtual KSocketAddress | localAddress () const =0 |
Static Public Attributes | |
static KResolverEntry | defaultProxy |
Detailed Description
The low-level backend for HTTP proxying.
This class derives from KSocketDevice and implements the necessary calls to make a connection through an HTTP proxy.
- Deprecated:
- Use KSocketFactory or KLocalSocket instead
Definition at line 44 of file k3httpproxysocketdevice.h.
Constructor & Destructor Documentation
◆ KHttpProxySocketDevice() [1/2]
KHttpProxySocketDevice::KHttpProxySocketDevice | ( | const KSocketBase * | parent = 0L | ) |
Constructor.
Definition at line 57 of file k3httpproxysocketdevice.cpp.
◆ KHttpProxySocketDevice() [2/2]
|
explicit |
Constructor with proxy server's address.
Definition at line 62 of file k3httpproxysocketdevice.cpp.
◆ ~KHttpProxySocketDevice()
|
virtual |
Destructor.
Definition at line 68 of file k3httpproxysocketdevice.cpp.
Member Function Documentation
◆ capabilities()
|
virtual |
Sets our capabilities.
Reimplemented from KNetwork::KSocketDevice.
Definition at line 76 of file k3httpproxysocketdevice.cpp.
◆ close()
|
virtual |
Closes the socket.
Reimplemented from KNetwork::KSocketDevice.
Definition at line 92 of file k3httpproxysocketdevice.cpp.
◆ connect() [1/2]
|
virtual |
Overrides connection.
Definition at line 111 of file k3httpproxysocketdevice.cpp.
◆ connect() [2/2]
Name-based connection.
We can tell the HTTP proxy server the full name.
Definition at line 133 of file k3httpproxysocketdevice.cpp.
◆ externalAddress()
|
virtual |
Return the externally visible address.
We can't tell what that address is, so this function always returns an empty object.
Reimplemented from KNetwork::KSocketDevice.
Definition at line 106 of file k3httpproxysocketdevice.cpp.
◆ peerAddress()
|
virtual |
Return the peer address.
Reimplemented from KNetwork::KSocketDevice.
Definition at line 99 of file k3httpproxysocketdevice.cpp.
◆ proxyServer()
const KResolverEntry & KHttpProxySocketDevice::proxyServer | ( | ) | const |
Retrieves the proxy server address.
Definition at line 82 of file k3httpproxysocketdevice.cpp.
◆ setProxyServer()
void KHttpProxySocketDevice::setProxyServer | ( | const KResolverEntry & | proxy | ) |
Sets the proxy server address.
Definition at line 87 of file k3httpproxysocketdevice.cpp.
Member Data Documentation
◆ defaultProxy
|
static |
This is the default proxy server to be used.
Applications may want to set this value so that calling setProxyServer() is unnecessary.
Definition at line 118 of file k3httpproxysocketdevice.h.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon Feb 20 2023 00:00:00 by doxygen 1.9.6 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.