stuck at this from so much time,need help....please ..

Chris Angelico rosuav at gmail.com
Sat Nov 23 17:23:08 EST 2013


On Sun, Nov 24, 2013 at 9:15 AM, Bhanu Karthik
<bhanukarthik2002 at gmail.com> wrote:
> data = sock.recv(RECV_BUFFER)
>                             username = str(sock.getpeername())
>                             username = usernames[username]
>                             if command == "/quit":
>                                 print data
>                                 sock.send("bye")
>                                 sock.close()
>                                 CONNECTION_LIST.remove(sock)
>
> even if the received data is '/quit' the if condition not excuting...please help.

At what point is command set? You're setting data here; is command
supposed to be derived from data?

This looks like a MUD or IRC style of server, which would suggest that
commands are terminated by end-of-line. You may need to take content
from the socket (currently in data) and split it off on either "\r\n"
or "\n". But it's hard to tell from this small snippet.

ChrisA



More information about the Python-list mailing list