new libunbound calls documented.

git-svn-id: file:///svn/unbound/trunk@1571 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards
2009-04-01 12:57:13 +00:00
parent c6da8de517
commit 7ad28caa41
9 changed files with 152 additions and 49 deletions
+8 -1
View File
@@ -33,6 +33,10 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/**
* \file
* Python module for unbound. Calls python script.
*/
#ifndef PYTHONMOD_H
#define PYTHONMOD_H
#include "util/module.h"
@@ -55,10 +59,13 @@ struct pythonmod_env {
/** Python module. */
PyObject* module;
/** Module functions */
/** Module init function */
PyObject* func_init;
/** Module deinit function */
PyObject* func_deinit;
/** Module operate function */
PyObject* func_operate;
/** Module super_inform function */
PyObject* func_inform;
/** Python dictionary. */