* [nft PATCH] py: return boolean value from Nftables.__[gs]et_output_flag()
@ 2023-07-18 10:33 Thomas Haller
2023-07-19 10:44 ` Phil Sutter
0 siblings, 1 reply; 2+ messages in thread
From: Thomas Haller @ 2023-07-18 10:33 UTC (permalink / raw)
To: NetFilter; +Cc: Thomas Haller
The callers of __get_output_flag() and __set_output_flag(), for example
get_reversedns_output(), are all documented to return a "boolean" value.
Instead, they returned the underlying, non-zero flags value. That number
is not obviously useful to the caller, because there is no API so that
the caller could do anything with it (except evaluating it in a boolean
context). Adjust that, to match the documentation.
The alternative would be to update the documentation, to indicate that
the functions return a non-zero integer when the flag is set. That would
preserve the previous behavior and maybe the number could be useful
somehow(?).
Signed-off-by: Thomas Haller <thaller@redhat.com>
---
py/nftables.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/py/nftables.py b/py/nftables.py
index 6daeafc231f4..68fcd7dd103c 100644
--- a/py/nftables.py
+++ b/py/nftables.py
@@ -154,7 +154,7 @@ class Nftables:
def __get_output_flag(self, name):
flag = self.output_flags[name]
- return self.nft_ctx_output_get_flags(self.__ctx) & flag
+ return (self.nft_ctx_output_get_flags(self.__ctx) & flag) != 0
def __set_output_flag(self, name, val):
flag = self.output_flags[name]
@@ -164,7 +164,7 @@ class Nftables:
else:
new_flags = flags & ~flag
self.nft_ctx_output_set_flags(self.__ctx, new_flags)
- return flags & flag
+ return (flags & flag) != 0
def get_reversedns_output(self):
"""Get the current state of reverse DNS output.
--
2.41.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [nft PATCH] py: return boolean value from Nftables.__[gs]et_output_flag()
2023-07-18 10:33 [nft PATCH] py: return boolean value from Nftables.__[gs]et_output_flag() Thomas Haller
@ 2023-07-19 10:44 ` Phil Sutter
0 siblings, 0 replies; 2+ messages in thread
From: Phil Sutter @ 2023-07-19 10:44 UTC (permalink / raw)
To: Thomas Haller; +Cc: NetFilter
On Tue, Jul 18, 2023 at 12:33:09PM +0200, Thomas Haller wrote:
> The callers of __get_output_flag() and __set_output_flag(), for example
> get_reversedns_output(), are all documented to return a "boolean" value.
>
> Instead, they returned the underlying, non-zero flags value. That number
> is not obviously useful to the caller, because there is no API so that
> the caller could do anything with it (except evaluating it in a boolean
> context). Adjust that, to match the documentation.
>
> The alternative would be to update the documentation, to indicate that
> the functions return a non-zero integer when the flag is set. That would
> preserve the previous behavior and maybe the number could be useful
> somehow(?).
>
> Signed-off-by: Thomas Haller <thaller@redhat.com>
Patch applied, thanks!
I wasn't aware Python is not intuitive (from a C programmer's point of
view) in that regard:
| >>> 0 == True
| False
| >>> 1 == True
| True
| >>> 2 == True
| False
| >>> 3 == True
| False
| >>> if 3:
| ... print("ok")
| ...
| ok
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-07-19 10:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-18 10:33 [nft PATCH] py: return boolean value from Nftables.__[gs]et_output_flag() Thomas Haller
2023-07-19 10:44 ` Phil Sutter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).