You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.0 KiB
47 lines
1.0 KiB
/**************************************************************************** |
|
* |
|
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org> |
|
* |
|
* QGroundControl is licensed according to the terms in the file |
|
* COPYING.md in the root of the source code directory. |
|
* |
|
****************************************************************************/ |
|
|
|
|
|
#ifndef TCPLOOPBACKSERVER_H |
|
#define TCPLOOPBACKSERVER_H |
|
|
|
#include <QThread> |
|
#include <QTcpServer> |
|
#include <QTcpSocket> |
|
|
|
/// @file |
|
/// @brief Simple TCP loop back server |
|
/// |
|
/// @author Don Gagne <don@thegagnes.com> |
|
|
|
class TCPLoopBackServer : public QThread |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
TCPLoopBackServer(QHostAddress hostAddress, quint16 port); |
|
|
|
signals: |
|
void newConnection(void); |
|
|
|
protected: |
|
virtual void run(void); |
|
|
|
private slots: |
|
void _newConnection(void); |
|
void _readBytes(void); |
|
|
|
private: |
|
QHostAddress _hostAddress; |
|
quint16 _port; |
|
QTcpServer* _tcpServer; |
|
QTcpSocket* _tcpSocket; |
|
}; |
|
|
|
#endif |