NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
nfd::face::WebSocketTransport Class Referencefinal

A Transport that communicates on a WebSocket connection. More...

#include <websocket-transport.hpp>

Inheritance diagram for nfd::face::WebSocketTransport:
Collaboration diagram for nfd::face::WebSocketTransport:

Public Types

typedef WebSocketTransportCounters Counters
 counters provided by WebSocketTransport More...
 
- Public Types inherited from nfd::face::Transport
using Counters = TransportCounters
 Counters provided by a transport. More...
 

Public Member Functions

 WebSocketTransport (websocketpp::connection_hdl hdl, websocket::Server &server, time::milliseconds pingInterval)
 
const CountersgetCounters () const final
 
void receiveMessage (const std::string &msg)
 Translates a message into a Block and delivers it to the link service. More...
 
void handlePong ()
 
void handlePongTimeout ()
 
- Public Member Functions inherited from nfd::face::Transport
 Transport ()
 Default constructor. More...
 
virtual ~Transport ()
 
void setFaceAndLinkService (Face &face, LinkService &service)
 set Face and LinkService for Transport More...
 
const FacegetFace () const
 
const LinkServicegetLinkService () const
 
LinkServicegetLinkService ()
 
void close ()
 Request the transport to be closed. More...
 
void send (const Block &packet)
 Send a link-layer packet. More...
 
FaceUri getLocalUri () const
 
FaceUri getRemoteUri () const
 
ndn::nfd::FaceScope getScope () const
 
ndn::nfd::FacePersistency getPersistency () const
 
bool canChangePersistencyTo (ndn::nfd::FacePersistency newPersistency) const
 check whether the face persistency can be changed to newPersistency More...
 
void setPersistency (ndn::nfd::FacePersistency newPersistency)
 changes face persistency setting More...
 
ndn::nfd::LinkType getLinkType () const
 
ssize_t getMtu () const
 
ssize_t getSendQueueCapacity () const
 
TransportState getState () const
 
time::steady_clock::TimePoint getExpirationTime () const
 
virtual ssize_t getSendQueueLength ()
 

Protected Member Functions

void doClose () final
 performs Transport specific operations to close the transport More...
 
- Protected Member Functions inherited from nfd::face::Transport
void receive (const Block &packet, const EndpointId &endpoint=0)
 Pass a received link-layer packet to the upper layer for further processing. More...
 
void setLocalUri (const FaceUri &uri)
 
void setRemoteUri (const FaceUri &uri)
 
void setScope (ndn::nfd::FaceScope scope)
 
void setLinkType (ndn::nfd::LinkType linkType)
 
void setMtu (ssize_t mtu)
 
void setSendQueueCapacity (ssize_t sendQueueCapacity)
 
void setState (TransportState newState)
 set transport state More...
 
void setExpirationTime (const time::steady_clock::TimePoint &expirationTime)
 
virtual bool canChangePersistencyToImpl (ndn::nfd::FacePersistency newPersistency) const
 invoked by canChangePersistencyTo to perform the check More...
 
virtual void afterChangePersistency (ndn::nfd::FacePersistency oldPersistency)
 invoked after the persistency has been changed More...
 

Additional Inherited Members

- Public Attributes inherited from nfd::face::Transport
signal::Signal< Transport, TransportState, TransportStateafterStateChange
 signals when transport state changes More...
 
- Protected Attributes inherited from nfd::face::TransportCounters
PacketCounter nInPackets
 count of incoming packets More...
 
PacketCounter nOutPackets
 count of outgoing packets More...
 
ByteCounter nInBytes
 total incoming bytes More...
 
ByteCounter nOutBytes
 total outgoing bytes More...
 
- Protected Attributes inherited from nfd::face::WebSocketTransportCounters
PacketCounter nOutPings
 count of outgoing Pings More...
 
PacketCounter nInPongs
 count of incoming Pongs More...
 

Detailed Description

A Transport that communicates on a WebSocket connection.

Definition at line 53 of file websocket-transport.hpp.

Member Typedef Documentation

◆ Counters

Constructor & Destructor Documentation

◆ WebSocketTransport()

Member Function Documentation

◆ getCounters()

const WebSocketTransport::Counters & nfd::face::WebSocketTransport::getCounters ( ) const
inlinefinalvirtual

Reimplemented from nfd::face::Transport.

Definition at line 105 of file websocket-transport.hpp.

◆ receiveMessage()

void nfd::face::WebSocketTransport::receiveMessage ( const std::string &  msg)

◆ handlePong()

void nfd::face::WebSocketTransport::handlePong ( )

◆ handlePongTimeout()

◆ doClose()

void nfd::face::WebSocketTransport::doClose ( )
finalprotectedvirtual

performs Transport specific operations to close the transport

This is invoked once by close() after changing state to CLOSING. It will not be invoked by Transport class if the transport is already CLOSING or CLOSED.

When the cleanup procedure is complete, this method should change state to CLOSED. This transition can happen synchronously or asynchronously.

Implements nfd::face::Transport.

Definition at line 164 of file websocket-transport.cpp.

References ndn::detail::ScopedCancelHandle< HandleT >::cancel(), websocketpp::endpoint< connection, config >::close(), nfd::face::CLOSED, NFD_LOG_FACE_TRACE, websocketpp::close::status::normal, and nfd::face::Transport::setState().

Referenced by handlePongTimeout().


The documentation for this class was generated from the following files: