Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed function call bug in client #3

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def user_to_ip(name):
b += hash[10+i]
ipaddr = "192.168.{}.{}".format(a%256, b%256)
if ipaddr in _ip_to_user and _ip_to_user[ipaddr] != name:
return _user_to_ip("_"+name)
return user_to_ip("_"+name)
_ip_to_user[ipaddr] = name
_user_to_ip[name] = ipaddr
return ipaddr
Expand Down