syndicate-pty-driver/protocols/schemas/pty.prs

18 lines
448 B
Plaintext
Raw Normal View History

2023-11-11 01:03:30 +00:00
version 1 .
PtySession = <pty-session @id any @commandLine CommandLine> .
CommandLine = [@command any @args any ...] .
PtySessionRunning = <pty-session-running @id any> .
2023-11-20 19:43:11 +00:00
# Message, driver interprets it as a request to execute TIOCSWINSZ
PtySize = <pty-size @id any @columns int @rows int> .
2023-11-11 01:03:30 +00:00
# To the subprocess
PtyInput = <pty-input @id any @data Chunk> .
# From the subprocess
PtyOutput = <pty-output @id any @data Chunk> .
Chunk = bytes .