17 #ifndef NURIA_HTTPSERVER_HPP
18 #define NURIA_HTTPSERVER_HPP
20 #include "network_global.hpp"
21 #include <QSslCertificate>
22 #include <QHostAddress>
29 namespace Internal {
class TcpServer; }
30 class HttpServerPrivate;
114 bool listen (
const QHostAddress &interface = QHostAddress::Any, quint16 port = 80);
116 #ifndef NURIA_NO_SSL_HTTP
121 bool listenSecure (
const QSslCertificate &certificate,
const QSslKey &privateKey,
122 const QHostAddress &interface = QHostAddress::Any, quint16 port = 443);
129 QString fqdn ()
const;
134 void setFqdn (
const QString &fqdn);
144 QVector< HttpBackend * > backends ()
const;
147 void stopListening (
int port);
153 int maxThreads ()
const;
162 void setMaxThreads (
int amount);
173 bool invokeByPath (
HttpClient *client,
const QString &path);
174 bool addTcpServerBackend (Internal::TcpServer *server,
const QHostAddress &interface, quint16 port);
176 void startProcessingThreads (
int amount);
177 void stopProcessingThreads (
int lastN);
178 void notifyBackendsOfNewThread (QThread *serverThread);
179 void notifyBackendOfThreads (
HttpBackend *backend);
180 int chooseThreadCount ();
181 void threadStopped (QObject *obj);
184 HttpServerPrivate *d_ptr;
189 #endif // NURIA_HTTPSERVER_HPP
ThreadingMode
Definition: httpserver.hpp:76
Definition: abstractsessionmanager.hpp:24
Abstract data transport for HttpClient.
Definition: httptransport.hpp:53
Server for the HyperText Transfer Protocol.
Definition: httpserver.hpp:71
Virtual directory for HttpServer.
Definition: httpnode.hpp:176
Base class for HttpServer back-ends.
Definition: httpbackend.hpp:34
The HttpClient class represents a connection to a client.
Definition: httpclient.hpp:118