NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
face.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #include "face.hpp"
27 
28 namespace nfd {
29 namespace face {
30 
31 Face::Face(unique_ptr<LinkService> service, unique_ptr<Transport> transport)
32  : afterReceiveInterest(service->afterReceiveInterest)
33  , afterReceiveData(service->afterReceiveData)
34  , afterReceiveNack(service->afterReceiveNack)
35  , afterStateChange(transport->afterStateChange)
36  , m_id(INVALID_FACEID)
37  , m_service(std::move(service))
38  , m_transport(std::move(transport))
39  , m_counters(m_service->getCounters(), m_transport->getCounters())
40  , m_metric(0)
41 {
42  m_service->setFaceAndTransport(*this, *m_transport);
43  m_transport->setFaceAndLinkService(*this, *m_service);
44 }
45 
46 std::ostream&
47 operator<<(std::ostream& os, const FaceLogHelper<Face>& flh)
48 {
49  const Face& face = flh.obj;
50  os << "[id=" << face.getId() << ",local=" << face.getLocalUri() <<
51  ",remote=" << face.getRemoteUri() << "] ";
52  return os;
53 }
54 
55 } // namespace face
56 } // namespace nfd
generalization of a network interface
Definition: face.hpp:67
STL namespace.
FaceUri getLocalUri() const
Definition: face.hpp:253
FaceUri getRemoteUri() const
Definition: face.hpp:259
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
FaceId getId() const
Definition: face.hpp:229
Face(unique_ptr< LinkService > service, unique_ptr< Transport > transport)
Definition: face.cpp:31
const FaceId INVALID_FACEID
indicates an invalid FaceId
Definition: face.hpp:42