Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame^] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2014 Named Data Networking Project |
| 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #include "tcp-channel-factory.hpp" |
| 8 | |
| 9 | namespace ndn { |
| 10 | |
| 11 | shared_ptr<TcpChannel> |
| 12 | TcpChannelFactory::create(const tcp::Endpoint& endpoint) |
| 13 | { |
| 14 | return shared_ptr<ndn::TcpChannel>(); |
| 15 | } |
| 16 | |
| 17 | shared_ptr<TcpChannel> |
| 18 | TcpChannelFactory::create(const std::string& localHost, const std::string& localPort) |
| 19 | { |
| 20 | return shared_ptr<ndn::TcpChannel>(); |
| 21 | } |
| 22 | |
| 23 | shared_ptr<TcpChannel> |
| 24 | TcpChannelFactory::find(const tcp::Endpoint& localEndpoint) |
| 25 | { |
| 26 | return shared_ptr<ndn::TcpChannel>(); |
| 27 | } |
| 28 | |
| 29 | } // namespace ndn |