fix ask fil
This commit is contained in:
parent
34ed739811
commit
ef0de22c54
@ -108,7 +108,8 @@ def main():
|
|||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
## Handle a connection from a client.
|
##
|
||||||
|
# Handle a connection from a client.
|
||||||
# Wait for request from the client
|
# Wait for request from the client
|
||||||
# @param connection the socket descriptor of the connection
|
# @param connection the socket descriptor of the connection
|
||||||
# @param client_adress ("ip", port) of the connection
|
# @param client_adress ("ip", port) of the connection
|
||||||
@ -183,7 +184,7 @@ def handle_request(connection, data):
|
|||||||
private_message(connection, array_data[1], " ".join(array_data[2:]))
|
private_message(connection, array_data[1], " ".join(array_data[2:]))
|
||||||
return
|
return
|
||||||
if array_data[0] == "/pmfile":
|
if array_data[0] == "/pmfile":
|
||||||
ask_file(connection, array_data[1], array_data[2])
|
ask_file(connection, array_data[1], " ".join(array_data[2:]))
|
||||||
return
|
return
|
||||||
if array_data[0] == "/acceptfile":
|
if array_data[0] == "/acceptfile":
|
||||||
accept_file(connection, array_data[1], " ".join(array_data[3:]), array_data[2])
|
accept_file(connection, array_data[1], " ".join(array_data[3:]), array_data[2])
|
||||||
|
Reference in New Issue
Block a user