Changes between Version 3 and Version 4 of GuiRpcProtocol


Ignore:
Timestamp:
Mar 31, 2008, 1:03:35 PM (16 years ago)
Author:
Didactylos
Comment:

m

Legend:

Unmodified
Added
Removed
Modified
  • GuiRpcProtocol

    v3 v4  
    22= GUI RPC protocol =
    33
    4 BOINC uses the GUI RPC protocol to make the BOINC Manager communicate with the core client. The protocol is based in XML. Both requests and responses are terminated with the control character `0x03`. Requests are inside `<boinc_gui_rpc_request>` tags, and replies from the client are inside `<boinc_gui_rpc_reply>` tags. A response is never sent without getting a request first.
     4BOINC uses the GUI RPC protocol to make the BOINC Manager communicate with the core client. The protocol is based on XML. Both requests and responses are terminated with the control character `0x03`. Requests are inside `<boinc_gui_rpc_request>` tags, and replies from the client are inside `<boinc_gui_rpc_reply>` tags. A response is never sent without getting a request first.
    55
    6 Note that the RPC "server" is the core client, and the RPC client is a GUI or addon communicating with it. It may seem confusing. This terminology will be used on the rest of the page.
     6Note that the RPC '''server''' is the core client, and the RPC '''client''' is a GUI or add-on communicating with it (such as BOINC Manager). It may seem confusing. This terminology will be used on the rest of the page.
    77
    88== Authentication == #auth