mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 23:45:07 +00:00
ProtocolServer: Integrate LibGemini for simple requests
This commit is contained in:
parent
308a755c38
commit
aaa6f90c34
6 changed files with 199 additions and 1 deletions
|
@ -27,6 +27,7 @@
|
|||
#include <LibCore/EventLoop.h>
|
||||
#include <LibCore/LocalServer.h>
|
||||
#include <LibIPC/ClientConnection.h>
|
||||
#include <ProtocolServer/GeminiProtocol.h>
|
||||
#include <ProtocolServer/HttpProtocol.h>
|
||||
#include <ProtocolServer/HttpsProtocol.h>
|
||||
#include <ProtocolServer/PSClientConnection.h>
|
||||
|
@ -52,6 +53,7 @@ int main(int, char**)
|
|||
return 1;
|
||||
}
|
||||
|
||||
(void)*new GeminiProtocol;
|
||||
(void)*new HttpProtocol;
|
||||
(void)*new HttpsProtocol;
|
||||
auto server = Core::LocalServer::construct();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue