blob: c73d803896d73fefdc6726e6a004997bf82d16a5 [file] [log] [blame]
deadbeef1dcb1642017-03-29 21:08:16 -07001/*
2 * Copyright 2017 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef PC_ICE_SERVER_PARSING_H_
12#define PC_ICE_SERVER_PARSING_H_
deadbeef1dcb1642017-03-29 21:08:16 -070013
14#include <vector>
15
Steve Anton10542f22019-01-11 09:11:00 -080016#include "api/peer_connection_interface.h"
17#include "api/rtc_error.h"
Yves Gerey3e707812018-11-28 16:47:49 +010018#include "p2p/base/port.h"
Steve Anton10542f22019-01-11 09:11:00 -080019#include "p2p/base/port_allocator.h"
deadbeef1dcb1642017-03-29 21:08:16 -070020
21namespace webrtc {
22
23// Parses the URLs for each server in |servers| to build |stun_servers| and
24// |turn_servers|. Can return SYNTAX_ERROR if the URL is malformed, or
25// INVALID_PARAMETER if a TURN server is missing |username| or |password|.
26//
27// Intended to be used to convert/validate the servers passed into a
28// PeerConnection through RTCConfiguration.
29RTCErrorType ParseIceServers(
30 const PeerConnectionInterface::IceServers& servers,
31 cricket::ServerAddresses* stun_servers,
32 std::vector<cricket::RelayServerConfig>* turn_servers);
33
34} // namespace webrtc
35
Steve Anton10542f22019-01-11 09:11:00 -080036#endif // PC_ICE_SERVER_PARSING_H_