문제

i've done an IRC-Bot in Python. I wanted to create a shutdown command. It look like this:

self.SendMessage("Bye!", self.connectedchannel) # Send bye to the connected channel
self.connection.shutdown(socket.SHUT_RDWR) # Shutdown the socket
self.connection.close() # Close the socket
sys.exit() # Exit the program

But in IRC the bot disconnects with "EOF from client", it doesnt disconnect properly. How to change my code it does?

도움이 되었습니까?

해결책

Before you close the socket, send an QUIT message:

QUIT :Bye!

This should fix it.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top