~ubuntu-branches/ubuntu/precise/networkmanagement/precise

« back to all changes in this revision

Viewing changes to vpnplugins/openconnect/openconnectauthworkerthread.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-10-23 14:00:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20111023140013-e38hdzybcg6zndrk
Tags: 0.9~svngit.nm09.20111023.ff842e-0ubuntu1
* New upstream snapshot.
* Drop all patches, merged upstream.
* Add kubuntu_add_subdirectory_po.diff to build the translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright 2011 Ilia Kats <ilia-kats@gmx.net>
 
3
 
 
4
This library is free software; you can redistribute it and/or
 
5
modify it under the terms of the GNU Lesser General Public
 
6
License as published by the Free Software Foundation; either
 
7
version 2.1 of the License, or (at your option) version 3, or any
 
8
later version accepted by the membership of KDE e.V. (or its
 
9
successor approved by the membership of KDE e.V.), which shall
 
10
act as a proxy defined in Section 6 of version 3 of the license.
 
11
 
 
12
This library is distributed in the hope that it will be useful,
 
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
Lesser General Public License for more details.
 
16
 
 
17
You should have received a copy of the GNU Lesser General Public
 
18
License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
19
*/
 
20
 
 
21
#ifndef OPENCONNECTAUTHWORKERTHREAD_H
 
22
#define OPENCONNECTAUTHWORKERTHREAD_H
 
23
 
 
24
#include <QThread>
 
25
 
 
26
class QMutex;
 
27
class QWaitCondition;
 
28
struct openconnect_info;
 
29
 
 
30
class OpenconnectAuthWorkerThread : public QThread
 
31
{
 
32
    Q_OBJECT
 
33
    friend class OpenconnectAuthStaticWrapper;
 
34
public:
 
35
    OpenconnectAuthWorkerThread(QMutex *, QWaitCondition *, bool *);
 
36
    ~OpenconnectAuthWorkerThread();
 
37
    struct openconnect_info* getOpenconnectInfo();
 
38
 
 
39
Q_SIGNALS:
 
40
    void validatePeerCert(const QString &, const QString &, const QString &, bool*);
 
41
    void processAuthForm(struct oc_auth_form *);
 
42
    void updateLog(const QString &, const int&);
 
43
    void writeNewConfig(const QString &);
 
44
    void cookieObtained(const int&);
 
45
 
 
46
protected:
 
47
    void run();
 
48
 
 
49
private:
 
50
    int writeNewConfig(char *, int);
 
51
    int validatePeerCert(struct x509_st *, const char *);
 
52
    int processAuthFormP(struct oc_auth_form *);
 
53
    void writeProgress(int level, const char *, va_list);
 
54
 
 
55
    QMutex *m_mutex;
 
56
    QWaitCondition *m_waitForUserInput;
 
57
    bool *m_userDecidedToQuit;
 
58
    struct openconnect_info *m_openconnectInfo;
 
59
};
 
60
 
 
61
#endif
 
 
b'\\ No newline at end of file'