diff options
author | Volker Lendecke <vl@samba.org> | 2008-05-07 12:20:18 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-05-10 11:17:00 +0200 |
commit | 90995202c0f64d2c379be26760d3bf8c122199b5 (patch) | |
tree | 73d9a6abad05fff5fac9de107a0100230de13514 /source3/include/smb.h | |
parent | f93e232535eb14d8f3862fff965adc544e70819f (diff) | |
download | samba-90995202c0f64d2c379be26760d3bf8c122199b5.tar.gz samba-90995202c0f64d2c379be26760d3bf8c122199b5.tar.xz samba-90995202c0f64d2c379be26760d3bf8c122199b5.zip |
Add "server_info" to connection_struct
This will replace all the user identity stuff in connection_struct, for now it
is just a source where the other fields in connection_struct are filled from.
(This used to be commit 0f53f9e7db9f99f239c4d0950452d0e2cde2ae8b)
Diffstat (limited to 'source3/include/smb.h')
-rw-r--r-- | source3/include/smb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 8c24e3045ed..c7a13fb3a09 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -623,6 +623,8 @@ typedef struct connection_struct { struct vfs_ops vfs_opaque; /* OPAQUE Filesystem operations */ struct vfs_handle_struct *vfs_handles; /* for the new plugins */ + struct auth_serversupplied_info *server_info; + char *user; /* name of user who *opened* this connection */ uid_t uid; /* uid of user who *opened* this connection */ gid_t gid; /* gid of user who *opened* this connection */ |