LEB128 Read-Eval-Print-Loop!
Converts numbers to signed and unsigned LEB128 and displays the results in
base-10, hex, and binary.
> 206
# unsigned LEB128
[206, 1]
[ce, 1]
[11001110, 00000001]
# signed LEB128
[206, 1]
[ce, 1]
[11001110, 00000001]
BIND
The BIND request is used in protocols which require the client to
accept connections from the server. FTP is a well-known example,
which uses the primary client-to-server connection for commands and
status reports, but may use a server-to-client connection for
transferring data on demand (e.g. LS, GET, PUT).