I have a server which opens a connections for a telnet client, like
for example:
I run the server ./server
and in another window I run telnet client as telnet localhost 9999,
as I run the telnet client, I will get new CLI prompt as CLI>>.
From this prompt I need custom tab completion, but many of the blog says we can really dont have readline feature implemented on the telnet side, if so we have go for our own client.
How do I achieve it? Any related help would be greatly appreciated. I am using linux(Ubuntu) and C language.
You can implement this either on the client or on the server.
For the client-side implementation there are two ways (which are basically the same):
When the client connects, the server sends a list of commands and their arguments, and that is cached in the client. When a user presses the TAB key the client searches this cached data.
When the client notices the TAB key being pressed, it asks the server for a list of possible completions. For speed this list should be cached on the client side.
So the basic solution here is: Server sends data to client, client shows data.
For a server-side implementation, you have to use telnet negotiation to tell the client to send raw uncooked characters and keys without any interference to the server. Then the server can check for the TAB key and perform completion.
The problem here is that then you have to add all command line editing and prompting in the server code, and can't rely on the client be anything but a "dumb terminal".
Having all processing done server-side has the upside that you can use almost any telnet client (as long as it can handle the telnet negotiations) and don't have to make your own custom client. The drawback is that you then have to implement the whole command-line editing features yourself in the server, and that the latencies for key-presses can be high as each key has to be sent to the server and then echoed back from the server.
Having a custom client has the upside that there are libraries which can easily handle command-line editing and help with the completion. The major downside here is that you have to make a custom client.