Implement DNS caching and verbose logging
All checks were successful
Build and Release / Build Windows Exe (push) Successful in 10s
All checks were successful
Build and Release / Build Windows Exe (push) Successful in 10s
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
import socket
|
||||
from typing import Optional
|
||||
from functools import lru_cache
|
||||
|
||||
@lru_cache(maxsize=1024)
|
||||
def get_hostname(ip: str) -> Optional[str]:
|
||||
try:
|
||||
# Python's equivalent to Resolv.getname(ip)
|
||||
@@ -9,6 +11,7 @@ def get_hostname(ip: str) -> Optional[str]:
|
||||
except socket.error:
|
||||
return None
|
||||
|
||||
@lru_cache(maxsize=1024)
|
||||
def get_ip(hostname: str) -> Optional[str]:
|
||||
try:
|
||||
return socket.gethostbyname(hostname)
|
||||
|
||||
Reference in New Issue
Block a user