~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to iris/irisnet/legacy/ndns.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
 
 * ndns.h - native DNS resolution
3
 
 * Copyright (C) 2001, 2002  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_NDNS_H
22
 
#define CS_NDNS_H
23
 
 
24
 
#include <QtCore>
25
 
#include <QtNetwork>
26
 
#include "netnames.h"
27
 
 
28
 
// CS_NAMESPACE_BEGIN
29
 
 
30
 
class NDns : public QObject
31
 
{
32
 
        Q_OBJECT
33
 
public:
34
 
        NDns(QObject *parent=0);
35
 
        ~NDns();
36
 
 
37
 
        void resolve(const QString &);
38
 
        void stop();
39
 
        bool isBusy() const;
40
 
 
41
 
        QHostAddress result() const;
42
 
        QString resultString() const;
43
 
 
44
 
signals:
45
 
        void resultsReady();
46
 
 
47
 
private slots:
48
 
        void dns_resultsReady(const QList<XMPP::NameRecord> &);
49
 
        void dns_error(XMPP::NameResolver::Error);
50
 
 
51
 
private:
52
 
        XMPP::NameResolver dns;
53
 
        bool busy;
54
 
        QHostAddress addr;
55
 
};
56
 
 
57
 
// CS_NAMESPACE_END
58
 
 
59
 
#endif