feat: add handelinng incoming messages
This commit is contained in:
parent
c40ca2baf3
commit
e1a08d6c7b
1 changed files with 9 additions and 0 deletions
|
|
@ -253,6 +253,15 @@ async fn handle_incoming<T: RmcCallable>(
|
||||||
return
|
return
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let RMCMessage{
|
||||||
|
protocol_id,
|
||||||
|
method_id,
|
||||||
|
call_id,
|
||||||
|
rest_of_data
|
||||||
|
} = message;
|
||||||
|
|
||||||
|
remote.rmc_call(&sending_conn, protocol_id, method_id, call_id, rest_of_data).await;
|
||||||
|
|
||||||
info!("got rmc request");
|
info!("got rmc request");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue