43 return os <<
"CLOSING";
45 return os <<
"FAILED";
47 return os <<
"CLOSED";
54 : packet(
std::move(packet1))
67 , m_expirationTime(
time::steady_clock::TimePoint::max())
76 BOOST_ASSERT(m_face ==
nullptr);
77 BOOST_ASSERT(m_service ==
nullptr);
100 packet.packet.size() <=
static_cast<size_t>(this->
getMtu()));
113 this->doSend(std::move(packet));
120 packet.packet.size() <=
static_cast<size_t>(this->
getMtu()));
123 this->
nInBytes += packet.packet.size();
155 if (m_persistency == newPersistency) {
159 auto oldPersistency = m_persistency;
160 m_persistency = newPersistency;
163 NFD_LOG_FACE_INFO(
"setPersistency " << oldPersistency <<
" -> " << newPersistency);
176 if (m_state == newState) {
180 bool isValid =
false;
201 BOOST_THROW_EXCEPTION(std::runtime_error(
"invalid state transition"));
214 operator<<(std::ostream& os, const FaceLogHelper<Transport>& flh)
220 os <<
"[id=" << faceId <<
",local=" << transport.
getLocalUri()
virtual void afterChangePersistency(ndn::nfd::FacePersistency oldPersistency)
invoked after the persistency has been changed
void setPersistency(ndn::nfd::FacePersistency newPersistency)
changes face persistency setting
void setFaceAndLinkService(Face &face, LinkService &service)
set Face and LinkService for Transport
Copyright (c) 2011-2015 Regents of the University of California.
#define NFD_LOG_FACE_TRACE(msg)
Log a message at TRACE level.
generalization of a network interface
std::ostream & operator<<(std::ostream &os, const Face &face)
const ssize_t MTU_UNLIMITED
indicates the transport has no limit on payload size
TransportState
indicates the state of a transport
const ssize_t MTU_INVALID
(for internal use) indicates MTU field is unset
stores a packet along with the remote endpoint
FaceUri getLocalUri() const
PacketCounter nOutPackets
count of outgoing packets
void close()
request the transport to be closed
Represents a TLV element of NDN packet format.
ByteCounter nOutBytes
total outgoing bytes
const Face * getFace() const
void send(Packet &&packet)
send a link-layer packet
the transport is being closed due to a failure
bool canChangePersistencyTo(ndn::nfd::FacePersistency newPersistency) const
check whether the face persistency can be changed to newPersistency
ByteCounter nInBytes
total incoming bytes
#define NFD_LOG_FACE_INFO(msg)
Log a message at INFO level.
Copyright (c) 2011-2015 Regents of the University of California.
signal::Signal< Transport, TransportState, TransportState > afterStateChange
signals when transport state changes
the transport is closed, and can be safely deallocated
void receivePacket(Transport::Packet &&packet)
performs LinkService specific operations to receive a lower-layer packet
FaceUri getRemoteUri() const
the transport is being closed gracefully, either by the peer or by a call to close() ...
virtual bool canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const
invoked by canChangePersistencyTo to perform the check
TransportState getState() const
void setState(TransportState newState)
set transport state
the transport is up and can transmit packets
uint64_t FaceId
identifies a face
void receive(Packet &&packet)
receive a link-layer packet
#define NFD_LOG_INIT(name)
PacketCounter nInPackets
count of incoming packets
virtual void doClose()=0
performs Transport specific operations to close the transport
const FaceId INVALID_FACEID
indicates an invalid FaceId
the transport is temporarily down, and is being recovered