summaryrefslogtreecommitdiff
path: root/Services/ProtocolServer
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-06-07 22:54:27 +0200
committerAndreas Kling <kling@serenityos.org>2020-06-07 22:55:33 +0200
commit3654710c418a8972555a5d079bfebca0b1fdb8e5 (patch)
treee23a0926a53e667cb8d46e3a7a5a7317204060e8 /Services/ProtocolServer
parentb81b2a85c4b84b456630cf95fc37a0c429334164 (diff)
downloadserenity-3654710c418a8972555a5d079bfebca0b1fdb8e5.zip
LibIPC+Services: Support URL as a native IPC type
Diffstat (limited to 'Services/ProtocolServer')
-rw-r--r--Services/ProtocolServer/ProtocolServer.ipc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Services/ProtocolServer/ProtocolServer.ipc b/Services/ProtocolServer/ProtocolServer.ipc
index c25fc54ca9..80097ebff4 100644
--- a/Services/ProtocolServer/ProtocolServer.ipc
+++ b/Services/ProtocolServer/ProtocolServer.ipc
@@ -10,6 +10,6 @@ endpoint ProtocolServer = 9
IsSupportedProtocol(String protocol) => (bool supported)
// Download API
- StartDownload(String url, IPC::Dictionary request_headers) => (i32 download_id)
+ StartDownload(URL url, IPC::Dictionary request_headers) => (i32 download_id)
StopDownload(i32 download_id) => (bool success)
}