blob: 93ff30e14bbb69db1dbd7934d71f17e3509227f3 [file] [log] [blame]
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * Copyright (c) 2014 Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology
9 *
10 * This file is part of NFD (Named Data Networking Forwarding Daemon).
11 * See AUTHORS.md for complete list of NFD authors and contributors.
12 *
13 * NFD is free software: you can redistribute it and/or modify it under the terms
14 * of the GNU General Public License as published by the Free Software Foundation,
15 * either version 3 of the License, or (at your option) any later version.
16 *
17 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
18 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 * PURPOSE. See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
23 **/
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010024
25#include "unix-stream-face.hpp"
26
27namespace nfd {
28
29// The whole purpose of this file is to specialize the logger,
30// otherwise, everything could be put into the header file.
31
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080032NFD_LOG_INCLASS_2TEMPLATE_SPECIALIZATION_DEFINE(StreamFace,
33 UnixStreamFace::protocol, LocalFace,
34 "UnixStreamFace");
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010035
Junxiao Shi79494162014-04-02 18:25:11 -070036BOOST_STATIC_ASSERT((boost::is_same<UnixStreamFace::protocol::socket::native_handle_type,
37 int>::value));
38
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010039UnixStreamFace::UnixStreamFace(const shared_ptr<UnixStreamFace::protocol::socket>& socket)
Junxiao Shi79494162014-04-02 18:25:11 -070040 : StreamFace<protocol, LocalFace>(FaceUri::fromFd(socket->native_handle()),
41 FaceUri(socket->local_endpoint()),
42 socket, true)
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010043{
44}
45
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010046} // namespace nfd