From 0d466258be1fc7156de469daec07b79701557168 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 5 Jun 2004 01:39:08 +0000 Subject: r1019: Push the auth subsystem away from using typedef, and over to the 'all goodness and light' struct ;-) Break apart the auth subsystem's return strucutres, into the parts that a netlogon call cares about, and the parts that are for a local session. This is the 'struct session_info' and it will almost completly replace the current information stored on a vuid, but be generic to all login methods (RPC over TCP, for example). Andrew Bartlett (This used to be commit d199697014d9562f9439a30b950fda798c5ef419) --- source4/include/smb.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source4/include') diff --git a/source4/include/smb.h b/source4/include/smb.h index f0ddab65af..2b047f41ad 100644 --- a/source4/include/smb.h +++ b/source4/include/smb.h @@ -873,13 +873,11 @@ typedef struct user_struct struct user_struct *next, *prev; uint16_t vuid; /* Tag for this entry. */ - DATA_BLOB session_key; - char *session_keystr; /* used by utmp and pam session code. TDB key string */ int homes_snum; - struct auth_serversupplied_info *server_info; + struct auth_session_info *session_info; } user_struct; -- cgit