From f8088addfb4b52ef485497dd4fbf905cbeefec27 Mon Sep 17 00:00:00 2001 From: greghvk Date: Fri, 29 Dec 2023 11:50:38 +0100 Subject: [PATCH] Fix RPC description (results->request) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f41e7b..6c9da29 100644 --- a/README.md +++ b/README.md @@ -1468,7 +1468,7 @@ RPC is a request-response protocol: * **Client stub procedure** - Marshals (packs) procedure id and arguments into a request message. * **Client communication module** - OS sends the message from the client to the server. * **Server communication module** - OS passes the incoming packets to the server stub procedure. -* **Server stub procedure** - Unmarshalls the results, calls the server procedure matching the procedure id and passes the given arguments. +* **Server stub procedure** - Unmarshalls the request, calls the server procedure matching the procedure id and passes the given arguments. * The server response repeats the steps above in reverse order. Sample RPC calls: