blob: 134372937c2281a0522a51d00fd268589b5ad6b5 [file] [log] [blame]
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +01001/* -*- 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 "unix-stream-face.hpp"
8
9namespace nfd {
10
11// The whole purpose of this file is to specialize the logger,
12// otherwise, everything could be put into the header file.
13
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080014NFD_LOG_INCLASS_2TEMPLATE_SPECIALIZATION_DEFINE(StreamFace,
15 UnixStreamFace::protocol, LocalFace,
16 "UnixStreamFace");
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010017
Junxiao Shi79494162014-04-02 18:25:11 -070018BOOST_STATIC_ASSERT((boost::is_same<UnixStreamFace::protocol::socket::native_handle_type,
19 int>::value));
20
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010021UnixStreamFace::UnixStreamFace(const shared_ptr<UnixStreamFace::protocol::socket>& socket)
Junxiao Shi79494162014-04-02 18:25:11 -070022 : StreamFace<protocol, LocalFace>(FaceUri::fromFd(socket->native_handle()),
23 FaceUri(socket->local_endpoint()),
24 socket, true)
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010025{
26}
27
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010028} // namespace nfd