blob: 42d4fc77cebca301d2b63d9670ad5a3fcd21037d [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
* Copyright (C) 2014 Named Data Networking Project
* See COPYING for copyright and distribution information.
*/
#include "tcp-face.hpp"
namespace ndn {
TcpFace::TcpFace(FaceId id, const shared_ptr<TcpFace::protocol::socket>& socket)
: StreamFace<protocol>(id)
, m_socket(socket)
{
}
void
TcpFace::sendInterest(const Interest& interest)
{
}
void
TcpFace::sendData(const Data& data)
{
}
} // namespace ndn