ok, I might be missing something blindingly obvious, but shouldn't that 32 be a 23?
This commit is contained in:
Rhys Perry 2020-12-27 21:30:15 +01:00 committed by GitHub
parent 3458157a24
commit 70174062e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ Example:
$ echo "SIZE" | netcat pixelflut.example.com 1337 $ echo "SIZE" | netcat pixelflut.example.com 1337
SIZE 800 600 SIZE 800 600
$ echo "PX 23 42 ff8000" | netcat pixelflut.example.com 1337 $ echo "PX 23 42 ff8000" | netcat pixelflut.example.com 1337
$ echo "PX 32 42" | netcat pixelflut.example.com 1337 $ echo "PX 23 42" | netcat pixelflut.example.com 1337
PX 23 42 ff8000 PX 23 42 ff8000
Implementations MAY support additional commands or have less strict parsing rules (e.g. allow `\r\n` or any whitespace between parameters) but they MUST support the commands above. Implementations MAY support additional commands or have less strict parsing rules (e.g. allow `\r\n` or any whitespace between parameters) but they MUST support the commands above.