| * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
| * Use of this source code is governed by a BSD-style license |
| * that can be found in the LICENSE file in the root of the source |
| * tree. An additional intellectual property rights grant can be found |
| * in the file PATENTS. All contributing project authors may |
| * be found in the AUTHORS file in the root of the source tree. |
| #include "webrtc/base/checks.h" |
| #include "webrtc/p2p/base/portallocator.h" |
| PortAllocatorSession::PortAllocatorSession(const std::string& content_name, |
| const std::string& ice_ufrag, |
| const std::string& ice_pwd, |
| : content_name_(content_name), |
| RTC_DCHECK(!ice_ufrag.empty()); |
| RTC_DCHECK(!ice_pwd.empty()); |
| PortAllocatorSession* PortAllocator::CreateSession( |
| const std::string& content_name, |
| const std::string& ice_ufrag, |
| const std::string& ice_pwd) { |
| return CreateSessionInternal(content_name, component, ice_ufrag, ice_pwd); |