/* * Copyright 2013 Christian Muehlhaeuser * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authors: * Christian Muehlhaeuser * Michael Zanetti */ #ifndef DISCOVERY_H #define DISCOVERY_H #include #include class QTimer; class Discovery: public QUdpSocket { Q_OBJECT public: Discovery(QObject *parent); bool findBridges(int timeout); signals: void error(); void discoveryDone(QList bridges); private slots: void onTimeout(); void onReadyRead(); private: QList m_reportedBridges; QTimer *m_timeout; }; #endif