You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using protocol "all" causes a failure, with an error of "ValueError: invalid protocol all".
The problem is that in iptc/ip4tc.py the value of socket.IPPROTO_IP is 0, so the setting of protocols in that file of 0 to "all" is overwritten by socket.IPPROTO_IP and the value all will not match the checks in set_protocol.
Using protocol "all" causes a failure, with an error of "ValueError: invalid protocol all".
The problem is that in iptc/ip4tc.py the value of
socket.IPPROTO_IP
is 0, so the setting ofprotocols
in that file of 0 to "all" is overwritten bysocket.IPPROTO_IP
and the valueall
will not match the checks inset_protocol
.This in iptc/ip4tc.py:
The text was updated successfully, but these errors were encountered: