Преглед на файлове

Removing gethostbyname from _states - _resolve

Causes errors with IPv6 addresses
master
Nate Bohman преди 5 години
родител
ревизия
57cc68e611
променени са 1 файла, в които са добавени 8 реда и са изтрити 3 реда
  1. +8
    -3
      _states/ufw.py

+ 8
- 3
_states/ufw.py Целия файл

@@ -20,11 +20,16 @@ def _changed(name, msg, **changes):


def _resolve(host):
# Commenting out as network from_addr or to_addr could be IPv6 which
# might not start with a number and causes errors with gethostbyname

return host

# let's just see if it starts with a number or a colon, for simplicity
if re.match(r'^[0-9:]', host):
return host
#if re.match(r'^[0-9:]', host):
#return host

return socket.gethostbyname(host)
#return socket.gethostbyname(host)


def _as_rule(method, app, interface, protocol, from_addr, from_port, to_addr, to_port, comment):

Loading…
Отказ
Запис