mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
s4-pyglue: added get_debug_level() method
Pair-Programmed-With: Jelmer Vernooij <jelmer@samba.org>
This commit is contained in:
parent
33d178767b
commit
0dd2152b01
@ -110,6 +110,11 @@ static PyObject *py_set_debug_level(PyObject *self, PyObject *args)
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
||||
static PyObject *py_get_debug_level(PyObject *self)
|
||||
{
|
||||
return PyInt_FromLong(DEBUGLEVEL);
|
||||
}
|
||||
|
||||
/*
|
||||
return the list of interface IPs we have configured
|
||||
takes an loadparm context, returns a list of IPs in string form
|
||||
@ -181,6 +186,8 @@ static PyMethodDef py_misc_methods[] = {
|
||||
"nttime2string(nttime) -> string" },
|
||||
{ "set_debug_level", (PyCFunction)py_set_debug_level, METH_VARARGS,
|
||||
"set debug level" },
|
||||
{ "get_debug_level", (PyCFunction)py_get_debug_level, METH_NOARGS,
|
||||
"get debug level" },
|
||||
{ "interface_ips", (PyCFunction)py_interface_ips, METH_VARARGS,
|
||||
"get interface IP address list"},
|
||||
{ NULL }
|
||||
|
@ -327,6 +327,7 @@ from samba import _glue
|
||||
version = _glue.version
|
||||
interface_ips = _glue.interface_ips
|
||||
set_debug_level = _glue.set_debug_level
|
||||
get_debug_level = _glue.get_debug_level
|
||||
unix2nttime = _glue.unix2nttime
|
||||
nttime2string = _glue.nttime2string
|
||||
nttime2unix = _glue.nttime2unix
|
||||
|
Loading…
Reference in New Issue
Block a user