1
0
mirror of https://github.com/lightning/bolts.git synced 2025-01-18 13:22:35 +01:00

do not print DEL character

This commit is contained in:
Pierre-Marie Padiou 2017-12-05 19:02:41 +01:00 committed by Rusty Russell
parent 4e5ec11c4e
commit b46aa422dd

View File

@ -170,7 +170,7 @@ The receiving node:
- if no existing channel is referred to by the message:
- MUST ignore the message.
- MUST truncate `len` to the remainder of the packet (if it's larger).
- if `data` is not composed solely of printable ASCII characters (For reference: the printable character set includes byte values 32 through 127, inclusive):
- if `data` is not composed solely of printable ASCII characters (For reference: the printable character set includes byte values 32 through 126, inclusive):
- SHOULD NOT print out `data` verbatim.
#### Rationale