mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-19 03:45:30 +08:00
Ref T698, functions to count network VATLIB calls to identify packets
* functions in network classes * context functions
This commit is contained in:
committed by
Mat Sutcliffe
parent
92baa16536
commit
f754154455
@@ -470,6 +470,23 @@ namespace BlackCore
|
||||
Q_UNUSED(enabled);
|
||||
}
|
||||
|
||||
//! \copydoc IContextNetwork::getNetworkStatistics
|
||||
virtual QString getNetworkStatistics(bool reset, const QString &separator) override
|
||||
{
|
||||
logEmptyContextWarning(Q_FUNC_INFO);
|
||||
Q_UNUSED(reset);
|
||||
Q_UNUSED(separator);
|
||||
return {};
|
||||
}
|
||||
|
||||
//! \copydoc IContextNetwork::setNetworkStatisticsEnable
|
||||
virtual bool setNetworkStatisticsEnable(bool enabled) override
|
||||
{
|
||||
logEmptyContextWarning(Q_FUNC_INFO);
|
||||
Q_UNUSED(enabled;);
|
||||
return false;
|
||||
}
|
||||
|
||||
public:
|
||||
//! \copydoc IContextNetwork::connectRawFsdMessageSignal
|
||||
virtual QMetaObject::Connection connectRawFsdMessageSignal(QObject *receiver, RawFsdMessageReceivedSlot rawFsdMessageReceivedSlot) override
|
||||
|
||||
Reference in New Issue
Block a user