26 #ifndef NFD_DAEMON_FACE_TRANSPORT_HPP 27 #define NFD_DAEMON_FACE_TRANSPORT_HPP 367 doSend(Packet&& packet) = 0;
385 ssize_t m_sendQueueCapacity;
453 return m_persistency;
465 m_linkType = linkType;
484 return m_sendQueueCapacity;
490 m_sendQueueCapacity = sendQueueCapacity;
502 return m_expirationTime;
508 m_expirationTime = expirationTime;
515 typename std::enable_if<std::is_base_of<Transport, T>::value &&
516 !std::is_same<Transport, T>::value, std::ostream&>::type
519 return os << FaceLogHelper<Transport>(flh.
obj);
525 #endif // NFD_DAEMON_FACE_TRANSPORT_HPP virtual void afterChangePersistency(ndn::nfd::FacePersistency oldPersistency)
invoked after the persistency has been changed
const ssize_t QUEUE_UNSUPPORTED
indicates that the transport does not support reading the queue capacity/length
void setPersistency(ndn::nfd::FacePersistency newPersistency)
changes face persistency setting
void setFaceAndLinkService(Face &face, LinkService &service)
set Face and LinkService for Transport
void setExpirationTime(const time::steady_clock::TimePoint &expirationTime)
TransportCounters Counters
counters provided by Transport
generalization of a network interface
std::ostream & operator<<(std::ostream &os, const Face &face)
time::steady_clock::TimePoint getExpirationTime() const
const ssize_t MTU_UNLIMITED
indicates the transport has no limit on payload size
TransportState
indicates the state of a transport
void setRemoteUri(const FaceUri &uri)
const ssize_t MTU_INVALID
(for internal use) indicates MTU field is unset
virtual bool canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const
invoked by canChangePersistencyTo to perform the check
static constexpr ssize_t MIN_MTU
minimum MTU that may be set on a transport
stores a packet along with the remote endpoint
counters provided by Transport
PacketCounter nOutPackets
count of outgoing packets
const ssize_t QUEUE_ERROR
indicates that the transport was unable to retrieve the queue capacity/length
ndn::nfd::FaceScope getScope() const
void close()
request the transport to be closed
Represents a TLV element of NDN packet format.
void setLinkType(ndn::nfd::LinkType linkType)
represents a counter of number of packets
const Face * getFace() const
ByteCounter nOutBytes
total outgoing bytes
provides a lightweight signal / event system
FaceUri getRemoteUri() const
void send(Packet &&packet)
send a link-layer packet
the transport is being closed due to a failure
void setScope(ndn::nfd::FaceScope scope)
bool canChangePersistencyTo(ndn::nfd::FacePersistency newPersistency) const
check whether the face persistency can be changed to newPersistency
ByteCounter nInBytes
total incoming bytes
represents a counter of number of bytes
FaceUri getLocalUri() const
TransportState getState() const
Copyright (c) 2011-2015 Regents of the University of California.
EndpointId remoteEndpoint
identifies the remote endpoint
signal::Signal< Transport, TransportState, TransportState > afterStateChange
signals when transport state changes
the transport is closed, and can be safely deallocated
virtual ssize_t getSendQueueLength()
ssize_t getSendQueueCapacity() const
void setLocalUri(const FaceUri &uri)
const LinkService * getLinkService() const
the transport is being closed gracefully, either by the peer or by a call to close()
represents the underlying protocol and address used by a Face
ndn::nfd::LinkType getLinkType() const
virtual const Counters & getCounters() const
ndn::nfd::FacePersistency getPersistency() const
void setSendQueueCapacity(ssize_t sendQueueCapacity)
void setState(TransportState newState)
set transport state
the transport is up and can transmit packets
for internal use by FaceLogging macros
void receive(Packet &&packet)
receive a link-layer packet
PacketCounter nInPackets
count of incoming packets
virtual void doClose()=0
performs Transport specific operations to close the transport
uint64_t EndpointId
identifies an endpoint on the link
Block packet
the packet as a TLV block
the transport is temporarily down, and is being recovered