瀏覽代碼

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…
取消
儲存