~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to cutestuff/network/httpconnect.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

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