You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HOST = 'my server ip' # Symbolic name, meaning all available interfaces
PORT = 23
import socket
s = socket.socket()
#Connecting using telnet
s.connect((HOST,23))
a = s.recv(100000)
print(str(a))
this print result is
b'\xff\xfb\x01'
how i can change it to other from server code
The text was updated successfully, but these errors were encountered:
this is my python code to connect server
HOST = 'my server ip' # Symbolic name, meaning all available interfaces
PORT = 23
import socket
s = socket.socket()
#Connecting using telnet
s.connect((HOST,23))
a = s.recv(100000)
print(str(a))
this print result is
b'\xff\xfb\x01'
how i can change it to other from server code
The text was updated successfully, but these errors were encountered: