⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 transportchannelproxy.cc

📁 本人收集整理的一份c/c++跨平台网络库
💻 CC
字号:
/* * libjingle * Copyright 2004--2005, Google Inc. * * Redistribution and use in source and binary forms, with or without  * modification, are permitted provided that the following conditions are met: * *  1. Redistributions of source code must retain the above copyright notice,  *     this list of conditions and the following disclaimer. *  2. Redistributions in binary form must reproduce the above copyright notice, *     this list of conditions and the following disclaimer in the documentation *     and/or other materials provided with the distribution. *  3. The name of the author may not be used to endorse or promote products  *     derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */#include "talk/p2p/base/transportchannelproxy.h"#include "talk/base/common.h"#include "talk/p2p/base/transport.h"#include "talk/p2p/base/transportchannelimpl.h"namespace cricket {TransportChannelProxy::TransportChannelProxy(const std::string& name, const std::string &session_type)  : TransportChannel(name, session_type), impl_(NULL) {}TransportChannelProxy::~TransportChannelProxy() {  if (impl_)    impl_->GetTransport()->DestroyChannel(impl_->name());}void TransportChannelProxy::SetImplementation(TransportChannelImpl* impl) {  impl_ = impl;  impl_->SignalReadableState.connect(      this, &TransportChannelProxy::OnReadableState);  impl_->SignalWritableState.connect(      this, &TransportChannelProxy::OnWritableState);  impl_->SignalReadPacket.connect(this, &TransportChannelProxy::OnReadPacket);  impl_->SignalRouteChange.connect(this, &TransportChannelProxy::OnRouteChange);  for (OptionList::iterator it = pending_options_.begin();       it != pending_options_.end();       ++it) {    impl_->SetOption(it->first, it->second);  }  pending_options_.clear();}int TransportChannelProxy::SendPacket(const char *data, size_t len) {  ASSERT(impl_ != NULL);  // should not be used until channel is writable  return impl_->SendPacket(data, len);}int TransportChannelProxy::SetOption(talk_base::Socket::Option opt, int value) {  if (impl_)    return impl_->SetOption(opt, value);  pending_options_.push_back(OptionPair(opt, value));  return 0;}int TransportChannelProxy::GetError() {  ASSERT(impl_ != NULL);  // should not be used until channel is writable  return impl_->GetError();}void TransportChannelProxy::OnReadableState(TransportChannel* channel) {  ASSERT(channel == impl_);  set_readable(impl_->readable());}void TransportChannelProxy::OnWritableState(TransportChannel* channel) {  ASSERT(channel == impl_);  set_writable(impl_->writable());}void TransportChannelProxy::OnReadPacket(    TransportChannel* channel, const char* data, size_t size) {  ASSERT(channel == impl_);  SignalReadPacket(this, data, size);}void TransportChannelProxy::OnRouteChange(TransportChannel* channel,                                          const talk_base::SocketAddress& address) {  ASSERT(channel == impl_);  SignalRouteChange(this, address);}}  // namespace cricket

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -