26 lines
505 B
Plaintext
26 lines
505 B
Plaintext
# Automatically generated; edit in Sphinx source code, not here.
|
|
# %hide-begin%
|
|
module TFTP;
|
|
# %hide-end%
|
|
|
|
public type Packet = unit {
|
|
opcode: uint16;
|
|
|
|
switch ( self.opcode ) {
|
|
1 -> rrq: ReadRequest;
|
|
4 -> ack: Acknowledgement;
|
|
};
|
|
|
|
on %done { print self; }
|
|
};
|
|
|
|
type Acknowledgement = unit {
|
|
num: uint16; # block number being acknowledged
|
|
};
|
|
# %hide-begin%
|
|
|
|
type ReadRequest = unit {
|
|
filename: bytes &until=b"\x00";
|
|
mode: bytes &until=b"\x00";
|
|
};
|
|
# %hide-end% |