Proc stdin
Sends bytes to the stdin of a running process with the distant-specific id
.
Request
{
"type": "proc_stdin",
"id": 1234,
"data": []
}
Fields
-
id
: the id of the process, which should match theid
received from theproc_spawned
message. -
data
: byte array representing the data to send to the stdin of the process.
Response
{
"type": "ok"
}