InsecureChannel
InsecureChannel channel(fFD);
class InsecureChannel : public Channel {
InsecureChannel(int socket);
virtual ~InsecureChannel();
fChannel(new(std::nothrow) InsecureChannel(socket)),
InsecureChannel::GetPeerAddress(NetAddress *address) const
InsecureChannel::InsecureChannel(int socket)
InsecureChannel::~InsecureChannel()
InsecureChannel::Close()
InsecureChannel::Send(const void* _buffer, int32 size)
InsecureChannel::Receive(void* _buffer, int32 size)
InsecureChannel* channel
= dynamic_cast<InsecureChannel*>(DownStreamChannelAt(0));
channel = new(std::nothrow) InsecureChannel(channelFD);
Channel* channel = new(std::nothrow) InsecureChannel(fd);
Channel* channel = new(std::nothrow) InsecureChannel(fd);