blob: 8aacbd6c264b7eee148ba4d65eee9bee16549eb1 [file] [log] [blame]
Alexander Afanasyeva9034b02014-01-26 18:32:02 -08001/* -*- 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.hpp"
8
9namespace ndn {
10
11TcpChannel::TcpChannel(boost::asio::io_service& ioService,
12 const tcp::Endpoint& endpoint)
13{
14}
15
16void
17TcpChannel::listen(const tcp::Endpoint& endpoint)
18{
19}
20
21void
22TcpChannel::connect(const tcp::Endpoint& endpoint)
23{
24}
25
26} // namespace ndn