blob: f198877496419d6e5e82e5518f69c6000c903b66 [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-face.hpp"
8
9namespace ndn {
10
11TcpFace::TcpFace(FaceId id, const shared_ptr<TcpFace::protocol::socket>& socket)
12 : StreamFace<protocol>(id)
13 , m_socket(socket)
14{
15}
16
17} // namespace ndn