Server

TODO

Server objects in C++ are referenced by the following shared pointer typedef:

typedef std::shared_ptr<rogue::protocols::udp::Server> rogue::protocols::udp::ServerPtr

The Server class description is shown below:

class Server : public rogue::protocols::udp::Core, public rogue::interfaces::stream::Master, public rogue::interfaces::stream::Slave

PGP Card class.

Public Functions

Server(uint16_t port, bool jumbo)

Creator.

~Server()

Destructor.

virtual void stop()

Stop the interface.

uint32_t getPort()

Get port number.

virtual void acceptFrame(std::shared_ptr<rogue::interfaces::stream::Frame> frame)

Accept a frame from master.

Public Static Functions

static std::shared_ptr<rogue::protocols::udp::Server> create(uint16_t port, bool jumbo)

Class creation.

static void setup_python()

Setup class in python.