diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-25 04:54:38 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-25 04:54:38 +0200 |
commit | 74126bc6d0211a7674156dfda8ab13054b403a1d (patch) | |
tree | 0bb9a6b894d037a1bdd5f224023f486b75610738 /source4/librpc/rpc | |
parent | 5211755563bb2738c328d24a813d86c77eca048f (diff) | |
download | samba-74126bc6d0211a7674156dfda8ab13054b403a1d.tar.gz samba-74126bc6d0211a7674156dfda8ab13054b403a1d.tar.bz2 samba-74126bc6d0211a7674156dfda8ab13054b403a1d.zip |
Expose transfer and abstract syntax.
(This used to be commit a875e07a37568b7e51c290074d5e3834c2caa4d6)
Diffstat (limited to 'source4/librpc/rpc')
-rw-r--r-- | source4/librpc/rpc/pyrpc.c | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/source4/librpc/rpc/pyrpc.c b/source4/librpc/rpc/pyrpc.c index a24c659a55..26242e8235 100644 --- a/source4/librpc/rpc/pyrpc.c +++ b/source4/librpc/rpc/pyrpc.c @@ -68,8 +68,6 @@ static bool ndr_syntax_from_py_object(PyObject *object, struct ndr_syntax_id *sy return false; } - - static PyObject *py_iface_server_name(PyObject *obj, void *closure) { const char *server_name; @@ -82,9 +80,43 @@ static PyObject *py_iface_server_name(PyObject *obj, void *closure) return PyString_FromString(server_name); } +static PyObject *py_ndr_syntax_id(struct ndr_syntax_id *syntax_id) +{ + PyObject *ret; + char *uuid_str; + + uuid_str = GUID_string(NULL, &syntax_id->uuid); + if (uuid_str == NULL) + return NULL; + + ret = Py_BuildValue("(s,i)", uuid_str, syntax_id->if_version); + + talloc_free(uuid_str); + + return ret; +} + +static PyObject *py_iface_abstract_syntax(PyObject *obj, void *closure) +{ + dcerpc_InterfaceObject *iface = (dcerpc_InterfaceObject *)obj; + + return py_ndr_syntax_id(&iface->pipe->syntax); +} + +static PyObject *py_iface_transfer_syntax(PyObject *obj, void *closure) +{ + dcerpc_InterfaceObject *iface = (dcerpc_InterfaceObject *)obj; + + return py_ndr_syntax_id(&iface->pipe->transfer_syntax); +} + static PyGetSetDef dcerpc_interface_getsetters[] = { { discard_const_p(char, "server_name"), py_iface_server_name, NULL, discard_const_p(char, "name of the server, if connected over SMB") }, + { discard_const_p(char, "abstract_syntax"), py_iface_abstract_syntax, NULL, + discard_const_p(char, "syntax id of the abstract syntax") }, + { discard_const_p(char, "transfer_syntax"), py_iface_transfer_syntax, NULL, + discard_const_p(char, "syntax id of the transfersyntax") }, { NULL } }; |