Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/plugins/filed/python/module/bareosfd.h')
-rw-r--r--core/src/plugins/filed/python/module/bareosfd.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/src/plugins/filed/python/module/bareosfd.h b/core/src/plugins/filed/python/module/bareosfd.h
index 8e2798766..6d32140d1 100644
--- a/core/src/plugins/filed/python/module/bareosfd.h
+++ b/core/src/plugins/filed/python/module/bareosfd.h
@@ -793,6 +793,16 @@ MOD_INIT(bareosfd)
if (!pDictbIOPS) { return MOD_ERROR_VAL; }
if (PyModule_AddObject(m, bIOPS, pDictbIOPS)) { return MOD_ERROR_VAL; }
+ const char* bIOPstatus = "bIOPstatus";
+ PyObject* pDictbIOPstatus = NULL;
+ pDictbIOPstatus = PyDict_New();
+ ConstSet_StrLong(pDictbIOPstatus, io_status_error, -1);
+ ConstSet_StrLong(pDictbIOPstatus, io_status_plugin, 0);
+ ConstSet_StrLong(pDictbIOPstatus, io_status_core, 1);
+ if (!pDictbIOPstatus) { return MOD_ERROR_VAL; }
+ if (PyModule_AddObject(m, bIOPstatus, pDictbIOPstatus)) { return MOD_ERROR_VAL; }
+
+
const char* bLevels = "bLevels";
PyObject* pDictbLevels = NULL;