source: ntrip/trunk/BNC/src/bncnetqueryudp.h@ 7960

Last change on this file since 7960 was 6787, checked in by stuerze, 9 years ago

add keep-alive request to send gga message in ntrip version 1 mode without interruption

File size: 704 bytes
RevLine 
[1718]1#ifndef BNCNETQUERYUDP_H
2#define BNCNETQUERYUDP_H
3
4#include "bncnetquery.h"
5
6class bncNetQueryUdp : public bncNetQuery {
7 Q_OBJECT
8 public:
9 bncNetQueryUdp();
10 virtual ~bncNetQueryUdp();
11
12 virtual void stop();
13 virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
14 virtual void startRequest(const QUrl& url, const QByteArray& gga);
[6787]15 virtual void keepAliveRequest(const QUrl& url, const QByteArray& gga);
[1718]16 virtual void waitForReadyRead(QByteArray& outData);
17
18 private slots:
19 void slotKeepAlive();
20
21 private:
[1720]22 QUdpSocket* _udpSocket;
23 QEventLoop* _eventLoop;
24 QHostAddress _address;
25 int _port;
[1761]26 char _keepAlive[12];
[1818]27 unsigned _session;
[1718]28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.