1#ifndef TENDUKE_HTTP_SERVER_HTTPLISTENER_H
2#define TENDUKE_HTTP_SERVER_HTTPLISTENER_H
4#include "./HTTPRequestHandler.h"
9namespace tenduke {
namespace http {
namespace server {
Interface for simple HTTPServer.
Definition HTTPServer.h:17
virtual std::uint16_t getPort()=0
Returns the port where this simple server is listening.
virtual void start()=0
Starts the server.
virtual void stop()=0
Stops the server.
const std::uint16_t RANDOM_AVAILABLE_PORT
Magic value to indicate "random available port".
Definition HTTPServer.h:12
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4