#include <websocket-factory.hpp>
Classes | |
class | Error |
Exception of WebSocketFactory. More... | |
Public Member Functions | |
WebSocketFactory (const std::string &defaultPort) | |
shared_ptr< WebSocketChannel > | createChannel (const websocket::Endpoint &localEndpoint) |
Create WebSocket-based channel using websocket::Endpoint. More... | |
shared_ptr< WebSocketChannel > | createChannel (const std::string &localIp, const std::string &port) |
Create WebSocket-based channel using specified IP address and port number. More... | |
virtual void | createFace (const FaceUri &uri, ndn::nfd::FacePersistency persistency, const FaceCreatedCallback &onCreated, const FaceConnectFailedCallback &onConnectFailed) 1 |
Try to create Face using the supplied FaceUri. More... | |
virtual std::list< shared_ptr< const Channel > > | getChannels () const |
Definition at line 34 of file websocket-factory.hpp.
|
explicit |
Definition at line 32 of file websocket-factory.cpp.
shared_ptr< WebSocketChannel > nfd::WebSocketFactory::createChannel | ( | const websocket::Endpoint & | localEndpoint | ) |
Create WebSocket-based channel using websocket::Endpoint.
websocket::Endpoint is really an alias for boost::asio::ip::tcp::endpoint.
If this method called twice with the same endpoint, only one channel will be created. The second call will just retrieve the existing channel.
WebSocketFactory::Error |
Definition at line 38 of file websocket-factory.cpp.
Referenced by createChannel().
shared_ptr< WebSocketChannel > nfd::WebSocketFactory::createChannel | ( | const std::string & | localIp, |
const std::string & | port | ||
) |
Create WebSocket-based channel using specified IP address and port number.
This method is just a helper that converts a string representation of localIp and port to websocket::Endpoint and calls the other createChannel overload.
WebSocketFactory::Error |
Definition at line 51 of file websocket-factory.cpp.
References createChannel().
|
virtual |
Try to create Face using the supplied FaceUri.
This method should automatically choose channel, based on supplied FaceUri and create face.
Error | Factory does not support connect operation |
Error | specified persistency is not supported |
Implements nfd::ProtocolFactory.
Definition at line 69 of file websocket-factory.cpp.
|
virtual |
Implements nfd::ProtocolFactory.
Definition at line 78 of file websocket-factory.cpp.