I am using an instant messenger bot. Recently Instant messenger(palringo) has changed the connection setting, and I have no idea how to get new socket server address and port that can connect bot to the Instant Messenger.
Code:
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server_address = ('80.69.129.4',12345);
print('Attempting to connect to the server')
try:
sock.connect(server_address)