syslog-ng source
python-logtemplate-options.c File Reference
Include dependency graph for python-logtemplate-options.c:

Functions

int py_is_log_template_options (PyObject *obj)
 
PyObject * py_log_template_options_new (LogTemplateOptions *template_options, GlobalConfig *cfg)
 
int py_log_template_options_init (PyObject *s, PyObject *args, PyObject *kwds)
 
void py_log_template_options_global_init (void)
 

Variables

PyTypeObject py_log_template_options_type
 

Function Documentation

◆ py_is_log_template_options()

int py_is_log_template_options ( PyObject *  obj)

◆ py_log_template_options_global_init()

void py_log_template_options_global_init ( void  )

◆ py_log_template_options_init()

int py_log_template_options_init ( PyObject *  s,
PyObject *  args,
PyObject *  kwds 
)

◆ py_log_template_options_new()

PyObject* py_log_template_options_new ( LogTemplateOptions *  template_options,
GlobalConfig *  cfg 
)

Variable Documentation

◆ py_log_template_options_type

PyTypeObject py_log_template_options_type
Initial value:
=
{
PyVarObject_HEAD_INIT(&PyType_Type, 0)
.tp_name = "LogTemplateOptions",
.tp_basicsize = sizeof(PyLogTemplateOptions),
.tp_dealloc = (destructor) PyObject_Del,
.tp_flags = Py_TPFLAGS_DEFAULT,
.tp_doc = "LogTemplateOptions class encapsulating a syslog-ng LogTemplateOptions",
.tp_new = PyType_GenericNew,
0,
}
int py_log_template_options_init(PyObject *s, PyObject *args, PyObject *kwds)
Definition: python-logtemplate-options.c:49
Definition: python-logtemplate-options.h:31