From 663dc94e630910b0b5b61801a03622641b2b83b4 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 5 Apr 2011 16:15:27 +1000 Subject: 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 --- source4/auth/pyauth.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'source4/auth/pyauth.h') 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 */ -- cgit