mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-14 03:36:28 +00:00
This lets clients say they want to be able to open a specific URL without specifying which handler to use.
13 lines
469 B
Plaintext
13 lines
469 B
Plaintext
endpoint LaunchServer = 101
|
|
{
|
|
Greet() => (i32 client_id)
|
|
OpenURL(URL url, String handler_name) => (bool response)
|
|
GetHandlersForURL(URL url) => (Vector<String> handlers)
|
|
GetHandlersWithDetailsForURL(URL url) => (Vector<String> handlers_details)
|
|
|
|
AddAllowedURL(URL url) => ()
|
|
AddAllowedHandlerWithAnyURL(String handler_name) => ()
|
|
AddAllowedHandlerWithOnlySpecificURLs(String handler_name, Vector<URL> urls) => ()
|
|
SealAllowlist() => ()
|
|
}
|