I am trying to develop telnet application using python. I am making use of telnetlib library for creating client and Socket/ SocketServer library for creating server application
The open() method(used for establishing connection with server socket) from telnet library is not able to connect to the server which is successfully listening for connection. Its throwing socket.error
Any idea, why open() method not able to connect to unused port which is listening for connection?
The open() method(used for establishing connection with server socket) from telnet library is not able to connect to the server which is successfully listening for connection. Its throwing socket.error
Any idea, why open() method not able to connect to unused port which is listening for connection?