~ubuntu-branches/ubuntu/trusty/jreen/trusty

« back to all changes in this revision

Viewing changes to 3rdparty/icesupport/httpconnect.h

  • Committer: Package Import Robot
  • Author(s): Prasad Murthy
  • Date: 2013-03-08 00:00:33 UTC
  • Revision ID: package-import@ubuntu.com-20130308000033-x8thp6syo1kkh63s
Tags: upstream-1.1.1
ImportĀ upstreamĀ versionĀ 1.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * httpconnect.h - HTTP "CONNECT" proxy
 
3
 * Copyright (C) 2003  Justin Karneges
 
4
 *
 
5
 * This library is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU Lesser General Public
 
7
 * License as published by the Free Software Foundation; either
 
8
 * version 2.1 of the License, or (at your option) any later version.
 
9
 *
 
10
 * This library is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
 * Lesser General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Lesser General Public
 
16
 * License along with this library; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 *
 
19
 */
 
20
 
 
21
#ifndef CS_HTTPCONNECT_H
 
22
#define CS_HTTPCONNECT_H
 
23
 
 
24
#include "bytestream.h"
 
25
 
 
26
// CS_NAMESPACE_BEGIN
 
27
 
 
28
class HttpConnect : public ByteStream
 
29
{
 
30
        Q_OBJECT
 
31
public:
 
32
        enum Error { ErrConnectionRefused = ErrCustom, ErrHostNotFound, ErrProxyConnect, ErrProxyNeg, ErrProxyAuth };
 
33
        HttpConnect(QObject *parent=0);
 
34
        ~HttpConnect();
 
35
 
 
36
        void setAuth(const QString &user, const QString &pass="");
 
37
        void connectToHost(const QString &proxyHost, int proxyPort, const QString &host, int port);
 
38
 
 
39
        // from ByteStream
 
40
        bool isOpen() const;
 
41
        void close();
 
42
        void write(const QByteArray &);
 
43
        QByteArray read(int bytes=0);
 
44
        int bytesAvailable() const;
 
45
        int bytesToWrite() const;
 
46
 
 
47
signals:
 
48
        void connected();
 
49
 
 
50
private slots:
 
51
        void sock_connected();
 
52
        void sock_connectionClosed();
 
53
        void sock_delayedCloseFinished();
 
54
        void sock_readyRead();
 
55
        void sock_bytesWritten(int);
 
56
        void sock_error(int);
 
57
 
 
58
private:
 
59
        class Private;
 
60
        Private *d;
 
61
 
 
62
        void reset(bool clear=false);
 
63
};
 
64
 
 
65
// CS_NAMESPACE_END
 
66
 
 
67
#endif