def get_host(ip):
attempts = 5
host = "undefined"
while attempts:
try:
data = socket.gethostbyaddr(ip)
host = data[0]
break
except socket.herror:
attempts -= 1
return host