diff options
Diffstat (limited to 'Kernel/GlobalProcessExposed.cpp')
-rw-r--r-- | Kernel/GlobalProcessExposed.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/GlobalProcessExposed.cpp b/Kernel/GlobalProcessExposed.cpp index 3ae1ecb008..01bdb5f2d9 100644 --- a/Kernel/GlobalProcessExposed.cpp +++ b/Kernel/GlobalProcessExposed.cpp @@ -114,6 +114,7 @@ private: TRY(obj.add("gateway", gateway->view())); auto netmask = TRY(it.netmask.to_string()); TRY(obj.add("genmask", netmask->view())); + TRY(obj.add("flags", it.flags)); TRY(obj.add("interface", it.adapter->name())); TRY(obj.finish()); } |