38 lines
844 B
C++
38 lines
844 B
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef LINUXPINGSENDER_H
|
|
#define LINUXPINGSENDER_H
|
|
|
|
#include "pingsender.h"
|
|
|
|
#include <QObject>
|
|
|
|
class QSocketNotifier;
|
|
|
|
class LinuxPingSender final : public PingSender {
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY_MOVE(LinuxPingSender)
|
|
|
|
public:
|
|
LinuxPingSender(const QString& source, QObject* parent = nullptr);
|
|
~LinuxPingSender();
|
|
|
|
void sendPing(const QString& dest, quint16 sequence) override;
|
|
|
|
private:
|
|
int createSocket();
|
|
|
|
private slots:
|
|
void rawSocketReady();
|
|
void icmpSocketReady();
|
|
|
|
private:
|
|
QSocketNotifier* m_notifier = nullptr;
|
|
QString m_source;
|
|
int m_socket = 0;
|
|
quint16 m_ident = 0;
|
|
};
|
|
|
|
#endif // LINUXPINGSENDER_H
|