Using telnet in a C Program

后端 未结 5 405
情歌与酒
情歌与酒 2020-12-09 12:53

I am working on a robot automation project and I have run into a road block. To control the robot, one needs to connect with it wirelessly via telnet and send commands throu

5条回答
  •  情话喂你
    2020-12-09 13:19

    You are looking for sockets. This is a comprehensive guide to socket programming in C. Telnet is also a well defined protocol, although I don't know if this robot would use telnet or not (it's extra processing overhead for a protocol that wouldn't have much added benefit for a robot control program). Telnet is covered in detail by RFC 854

提交回复
热议问题