~ubuntu-branches/ubuntu/wily/psi/wily-proposed

« back to all changes in this revision

Viewing changes to iris/src/irisnet/noncore/legacy/servsock.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
 * servsock.h - simple wrapper to QServerSocket
 
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_SERVSOCK_H
 
22
#define CS_SERVSOCK_H
 
23
 
 
24
#include <QtCore>
 
25
#include <QtNetwork>
 
26
 
 
27
// CS_NAMESPACE_BEGIN
 
28
 
 
29
class ServSock : public QObject
 
30
{
 
31
        Q_OBJECT
 
32
public:
 
33
        ServSock(QObject *parent=0);
 
34
        ~ServSock();
 
35
 
 
36
        bool isActive() const;
 
37
        bool listen(quint16 port);
 
38
        void stop();
 
39
        int port() const;
 
40
        QHostAddress address() const;
 
41
 
 
42
signals:
 
43
        void connectionReady(int);
 
44
 
 
45
private slots:
 
46
        void sss_connectionReady(int);
 
47
 
 
48
private:
 
49
        class Private;
 
50
        Private *d;
 
51
};
 
52
 
 
53
class ServSockSignal : public QTcpServer
 
54
{
 
55
        Q_OBJECT
 
56
public:
 
57
        ServSockSignal(QObject *parent = 0);
 
58
 
 
59
signals:
 
60
        void connectionReady(int);
 
61
 
 
62
protected:
 
63
        // reimplemented
 
64
        void incomingConnection(int socketDescriptor);
 
65
};
 
66
 
 
67
// CS_NAMESPACE_END
 
68
 
 
69
#endif