2019-08-06 20:31:54 +02:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
2021-03-20 21:14:47 +01:00
|
|
|
* Copyright 2019-2021, Jonas Kvinge <jonas@jkvinge.net>
|
2019-08-06 20:31:54 +02:00
|
|
|
*
|
|
|
|
* Strawberry is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Strawberry 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QtGlobal>
|
2022-12-28 03:12:00 +01:00
|
|
|
#include <QString>
|
|
|
|
#include <QNetworkInterface>
|
2019-08-06 20:31:54 +02:00
|
|
|
|
2022-12-28 03:12:00 +01:00
|
|
|
#include "macaddrutils.h"
|
2019-08-06 20:31:54 +02:00
|
|
|
|
|
|
|
namespace Utilities {
|
|
|
|
|
2022-12-28 03:12:00 +01:00
|
|
|
QString MacAddress() {
|
|
|
|
|
|
|
|
QString ret;
|
|
|
|
|
|
|
|
for (QNetworkInterface &netif : QNetworkInterface::allInterfaces()) {
|
|
|
|
if (
|
|
|
|
(netif.hardwareAddress() == "00:00:00:00:00:00") ||
|
|
|
|
(netif.flags() & QNetworkInterface::IsLoopBack) ||
|
|
|
|
!(netif.flags() & QNetworkInterface::IsUp) ||
|
|
|
|
!(netif.flags() & QNetworkInterface::IsRunning)
|
|
|
|
) { continue; }
|
2022-01-29 01:33:40 +01:00
|
|
|
if (ret.isEmpty() || netif.type() == QNetworkInterface::Ethernet || netif.type() == QNetworkInterface::Wifi) {
|
2022-12-28 03:12:00 +01:00
|
|
|
ret = netif.hardwareAddress();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret.isEmpty()) ret = "00:00:00:00:00:00";
|
|
|
|
|
|
|
|
return ret;
|
2019-08-06 20:31:54 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Utilities
|