Relays raw bytes to the session — used by the host for passthrough input (every keystroke while a program owns the terminal).
bytes
void sendRaw(List<int> bytes) { if (_ended) return; _session.writeStdin(bytes); }