diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-05 16:15:27 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-05 23:46:04 +0200 |
commit | 663dc94e630910b0b5b61801a03622641b2b83b4 (patch) | |
tree | 3d74a050420ec92dd686f618b3b3ad40b647fc86 /source4/auth/pyauth.h | |
parent | f261266c9d66d7143a867f4719d1549f58915036 (diff) | |
download | samba-663dc94e630910b0b5b61801a03622641b2b83b4.tar.gz |
auth: Move auth_session_info into IDL
This changes auth_session_info_transport to just be a wrapper, rather
than a copy that has to be kept in sync.
As auth_session_info was already wrapped in python, this required
changes to the existing pyauth wrapper and it's users.
Andrew Bartlett
Diffstat (limited to 'source4/auth/pyauth.h')
-rw-r--r-- | source4/auth/pyauth.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source4/auth/pyauth.h b/source4/auth/pyauth.h index 38fd2a56a8..60fd2e5d14 100644 --- a/source4/auth/pyauth.h +++ b/source4/auth/pyauth.h @@ -24,8 +24,6 @@ #include "auth/session.h" #define PyAuthSession_AsSession(obj) py_talloc_get_type(obj, struct auth_session_info) -#define PyAuthSession_Check(obj) PyObject_TypeCheck(obj, &PyAuthSession) struct auth_session_info *PyObject_AsSession(PyObject *obj); -PyObject *PyAuthSession_FromSession(struct auth_session_info *session); #endif /* _PYAUTH_H */ |