blob: 1708ad9f6059df8bf9ed0977ae4573fa1fb7a940 [file] [log] [blame]
Adrien BĂ©rauda1d294f2023-07-17 22:42:13 -04001/*
2 * Copyright (C) 2004-2023 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#pragma once
18
19#include "ip_utils.h"
20#include <string>
21
22namespace dhtnet {
23
24struct TurnTransportParams
25{
26 dhtnet::IpAddr server;
27 std::string domain; // Used by cache_turn
28 // Plain Credentials
29 std::string realm;
30 std::string username;
31 std::string password;
32};
33
34}