We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfd1361 commit 556b889Copy full SHA for 556b889
libraries/rpc/rpc.cpp
@@ -146,6 +146,7 @@ bool RPC::call(const char *request, char *reply) {
146
/* Look through the methods for the one whose name matches */
147
while (true) {
148
for (; cur_method->name != NULL; cur_method++) {
149
+ r.putData<const char*>(cur_method->name);
150
if (strcmp(cur_method->name, args.method_name) == 0) {
151
(cur_method->method_caller)(p, &args, &r);
152
return true;
0 commit comments