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-face.hpp" |
| 8 | |
| 9 | namespace ndn { |
| 10 | |
| 11 | TcpFace::TcpFace(FaceId id, const shared_ptr<TcpFace::protocol::socket>& socket) |
| 12 | : StreamFace<protocol>(id) |
| 13 | , m_socket(socket) |
| 14 | { |
| 15 | } |
| 16 | |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 17 | void |
| 18 | TcpFace::sendInterest(const Interest& interest) |
| 19 | { |
| 20 | } |
| 21 | |
| 22 | void |
| 23 | TcpFace::sendData(const Data& data) |
| 24 | { |
| 25 | } |
| 26 | |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 27 | } // namespace ndn |