summaryrefslogtreecommitdiffstats
path: root/kdecore/network/ksockssocketdevice.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
commite16866e072f94410321d70daedbcb855ea878cac (patch)
treeee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /kdecore/network/ksockssocketdevice.h
parenta58c20c1a7593631a1b50213c805507ebc16adaf (diff)
downloadtdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz
tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'kdecore/network/ksockssocketdevice.h')
-rw-r--r--kdecore/network/ksockssocketdevice.h129
1 files changed, 0 insertions, 129 deletions
diff --git a/kdecore/network/ksockssocketdevice.h b/kdecore/network/ksockssocketdevice.h
deleted file mode 100644
index 4db5d1e01..000000000
--- a/kdecore/network/ksockssocketdevice.h
+++ /dev/null
@@ -1,129 +0,0 @@
-/* -*- C++ -*-
- * Copyright (C) 2004 Thiago Macieira <thiago.macieira@kdemail.net>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed 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
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifndef KSOCKSSOCKETDEVICE_H
-#define KSOCKSSOCKETDEVICE_H
-
-#include "ksocketdevice.h"
-
-namespace KNetwork {
-
-/**
- * @class KSocksSocketDevice ksockssocketdevice.h ksockssocketdevice.h
- * @brief The low-level class for SOCKS proxying.
- *
- * This class reimplements several functions from @ref KSocketDevice in order
- * to implement SOCKS support.
- *
- * This works by using KSocks.
- *
- * @author Thiago Macieira <thiago.macieira@kdemail.net>
- *
- * @warning This code is untested!
- */
-class KDECORE_EXPORT KSocksSocketDevice: public KSocketDevice
-{
-public:
- /**
- * Constructor.
- */
- KSocksSocketDevice(const KSocketBase* = 0L);
-
- /**
- * Construct from a file descriptor.
- */
- explicit KSocksSocketDevice(int fd);
-
- /**
- * Destructor.
- */
- virtual ~KSocksSocketDevice();
-
- /**
- * Sets our capabilities.
- */
- virtual int capabilities() const;
-
- /**
- * Overrides binding.
- */
- virtual bool bind(const KResolverEntry& address);
-
- /**
- * Overrides listening.
- */
- virtual bool listen(int backlog);
-
- /**
- * Overrides connection.
- */
- virtual bool connect(const KResolverEntry& address);
-
- /**
- * Overrides accepting. The return type is specialised.
- */
- virtual KSocksSocketDevice* accept();
-
- /**
- * Overrides reading.
- */
- virtual TQ_LONG tqreadBlock(char *data, TQ_ULONG maxlen);
- virtual TQ_LONG tqreadBlock(char *data, TQ_ULONG maxlen, KSocketAddress& from);
-
- /**
- * Overrides peeking.
- */
- virtual TQ_LONG peekBlock(char *data, TQ_ULONG maxlen);
- virtual TQ_LONG peekBlock(char *data, TQ_ULONG maxlen, KSocketAddress& from);
-
- /**
- * Overrides writing.
- */
- virtual TQ_LONG tqwriteBlock(const char *data, TQ_ULONG len);
- virtual TQ_LONG tqwriteBlock(const char *data, TQ_ULONG len, const KSocketAddress& to);
-
- /**
- * Overrides getting socket address.
- */
- virtual KSocketAddress localAddress() const;
-
- /**
- * Overrides getting peer address.
- */
- virtual KSocketAddress peerAddress() const;
-
- /**
- * Overrides getting external address.
- */
- virtual KSocketAddress externalAddress() const;
-
- /**
- * Overrides polling.
- */
- virtual bool poll(bool* input, bool* output, bool* exception = 0L,
- int timeout = -1, bool* timedout = 0L);
-
-private:
- static void initSocks();
- friend class KSocketDevice;
-};
-
-} // namespace KNetwork
-
-#endif