mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:57:35 +00:00
ProtocolServer+LibProtocol: Introduce a server for handling downloads
This patch adds ProtocolServer, a server that handles network requests on behalf of its clients. The first protocol implemented is HTTP. The idea here is to use a plug-in architecture where any number of protocols can be added and implemented without having to mess around with each client program that wants to use the protocol. A simple client API is provided through LibProtocol::Client. :^)
This commit is contained in:
parent
61f611bf3c
commit
fd4349a9f2
21 changed files with 475 additions and 0 deletions
|
@ -31,6 +31,7 @@ build_targets="$build_targets ../Libraries/LibPthread"
|
|||
# Build IPC servers before their client code to ensure the IPC definitions are available.
|
||||
build_targets="$build_targets ../Servers/AudioServer"
|
||||
build_targets="$build_targets ../Servers/LookupServer"
|
||||
build_targets="$build_targets ../Servers/ProtocolServer"
|
||||
|
||||
build_targets="$build_targets ../AK"
|
||||
|
||||
|
@ -42,6 +43,7 @@ build_targets="$build_targets ../Libraries/LibM"
|
|||
build_targets="$build_targets ../Libraries/LibPCIDB"
|
||||
build_targets="$build_targets ../Libraries/LibVT"
|
||||
build_targets="$build_targets ../Libraries/LibMarkdown"
|
||||
build_targets="$build_targets ../Libraries/LibProtocol"
|
||||
|
||||
build_targets="$build_targets ../Applications/About"
|
||||
build_targets="$build_targets ../Applications/Calculator"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue