Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [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 "unix-stream-face.hpp" |
| 8 | |
| 9 | namespace 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 | |
| 14 | NFD_LOG_INCLASS_TEMPLATE_SPECIALIZATION_DEFINE(StreamFace, UnixStreamFace::protocol, "UnixStreamFace"); |
| 15 | |
| 16 | UnixStreamFace::UnixStreamFace(const shared_ptr<UnixStreamFace::protocol::socket>& socket) |
| 17 | : StreamFace<protocol>(socket) |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | bool |
| 22 | UnixStreamFace::isLocal() const |
| 23 | { |
| 24 | return true; |
| 25 | } |
| 26 | |
| 27 | } // namespace nfd |