Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-03 | Userland: Make IPC results with one return value available directly | Gunnar Beutner | |
This changes client methods so that they return the IPC response's return value directly - instead of the response struct - for IPC methods which only have a single return value. | |||
2021-05-03 | Userland: Change IPC funcs to use plain arguments instead of a struct | Gunnar Beutner | |
Instead of having a single overloaded handle method each method gets its own unique method name now. | |||
2021-05-02 | Userland: Make IPC handlers return void if they don't have any outputs | Gunnar Beutner | |
2021-05-02 | Userland: Get rid of the OwnPtr<...> boilerplate code for IPC handlers | Gunnar Beutner | |
2021-04-25 | Services: Rename ProtocolServer to RequestServer | DexesTTP | |
The current ProtocolServer was really only used for requests, and with the recent introduction of the WebSocket service, long-lasting connections with another server are not part of it. To better reflect this, this commit renames it to RequestServer. This commit also changes the existing 'protocol' portal to 'request', the existing 'protocol' user and group to 'request', and most mentions of the 'download' aspect of the request to 'request' when relevant, to make everything consistent across the system. Note that LibProtocol still exists as-is, but the more generic Client class and the more specific Download class have both been renamed to a more accurate RequestClient and Request to match the new names. This commit only change names, not behaviors. |