Line data Source code
1 : /*
2 : * Copyright (C) 2004-2026 Savoir-faire Linux Inc.
3 : *
4 : * This program is free software: you can redistribute it and/or modify
5 : * it under the terms of the GNU General Public License as published by
6 : * the Free Software Foundation, either version 3 of the License, or
7 : * (at your option) any later version.
8 : *
9 : * This program is distributed in the hope that it will be useful,
10 : * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 : * GNU General Public License for more details.
13 : *
14 : * You should have received a copy of the GNU General Public License
15 : * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 : */
17 :
18 : #include "ip_utils.h"
19 :
20 : #if defined(__ANDROID__) || (defined(TARGET_OS_IOS) && TARGET_OS_IOS)
21 : #define JAMI_DEVICE_SIGNAL 1
22 : #endif
23 :
24 : #if JAMI_DEVICE_SIGNAL
25 : #include "client/jami_signal.h"
26 : #endif
27 :
28 : #include <dhtnet/ip_utils.h>
29 :
30 : namespace jami {
31 :
32 : std::string
33 777 : ip_utils::getDeviceName()
34 : {
35 : #if JAMI_DEVICE_SIGNAL
36 : std::vector<std::string> deviceNames;
37 : emitSignal<libjami::ConfigurationSignal::GetDeviceName>(&deviceNames);
38 : if (not deviceNames.empty()) {
39 : return deviceNames[0];
40 : }
41 : #endif
42 777 : return dhtnet::ip_utils::getHostname();
43 : }
44 :
45 : } // namespace jami
|