Skip to content

Commit

Permalink
feat(backend): small update to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mystiker committed Nov 4, 2024
1 parent b887bcb commit d655f1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/features/telnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The TelnetClient class handles these negotiation commands, regardless of their o
| NAWS (Negotiate About Window Size) | Partial | WILL (+ Sub) | DO | We support this option to subnegotiate the window size. However, we send static values for the window size (80x25) and it does look like Unitopia is ignoring these values. | https://github.com/unitopia-de/webmud3/issues/108 |
| CHARSET | Partial | DO / WILL (+ Sub) | WILL (+ Sub) / DO | We support this option to subnegotiate the character set with the server. However, we only accept UTF-8. If the server does not subnogitiate for UTF-8, an error will be thrown and the connection will be closed. | https://github.com/unitopia-de/webmud3/issues/111 |
| LINEMODE | Partial | WILL | DO | We support the LINEMODE option. However, the server wants us to send our input buffer whenever ANY ASCII control character is entered (FORWARDMASK), which is unsupported. On the other side, we do support SOFT_TAB and EDIT MODES | https://github.com/unitopia-de/webmud3/issues/114 |
| EOR (End of Record) | Todo | DONT | WILL | Allows for the server to signal the end of a record which is not needed for our client. | https://github.com/unitopia-de/webmud3/issues/112 |
| EOR (End of Record) | Unsupported | DONT | WILL | Allows for the server to signal the end of a record which is not needed for our client. | https://github.com/unitopia-de/webmud3/issues/112 |
| STARTTLS | Unsupported | WONT | DO | This option allows to upgrade any existing connection to a secure one. However, we don't support this intentionally and recommend you to initialize a secure connection from the beginning. | https://github.com/unitopia-de/webmud3/issues/113 |
| XDISPLOC | Unsupported | WONT | DO | Crazy option to redirect graphical output directly to a X display. Probably not used by Unitopia. | |
| TSPEED (Terminal Speed) | Unsupported | WONT | DO | Allows the client to report its connection speed (in baud) to the server, which can adjust data transmission rates accordingly. Although we do not support this option now, it could be valuable, especially for managing data flow over unstable or mobile connections. | |
Expand Down

0 comments on commit d655f1b

Please sign in to comment.