Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

10 lines
333 B
Plaintext

# Automatically generated; edit in Sphinx source code, not here.
module TFTP; # [1]
public type ReadRequest = unit { # [2]
opcode: uint16; # [3]
filename: bytes &until=b"\x00"; # [4]
mode: bytes &until=b"\x00"; # [5]
on %done { print self; } # [6]
};