12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef PC_ICE_SERVER_PARSING_H_
- #define PC_ICE_SERVER_PARSING_H_
- #include <vector>
- #include "api/peer_connection_interface.h"
- #include "api/rtc_error.h"
- #include "p2p/base/port.h"
- #include "p2p/base/port_allocator.h"
- #include "rtc_base/system/rtc_export.h"
- namespace webrtc {
- RTC_EXPORT RTCErrorType
- ParseIceServers(const PeerConnectionInterface::IceServers& servers,
- cricket::ServerAddresses* stun_servers,
- std::vector<cricket::RelayServerConfig>* turn_servers);
- }
- #endif
|