Skip to content

Commit

Permalink
Fix missing get addr info without services info
Browse files Browse the repository at this point in the history
  • Loading branch information
ObjatieGroba authored and GIC-de committed Jul 24, 2024
1 parent eb74634 commit c4bd5b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyrad/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def _GetAddrInfo(self, addr):
"""
results = set()
try:
tmp = socket.getaddrinfo(addr, 'www')
tmp = socket.getaddrinfo(addr, '80')
except socket.gaierror:
return []

Expand Down

0 comments on commit c4bd5b5

Please sign in to comment.