diff options
author | Volker Lendecke <vl@samba.org> | 2008-06-24 14:18:55 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-06-26 13:13:22 +0200 |
commit | d331624fdfe9fc72f1da7fd01c59a1a20cf1c7d7 (patch) | |
tree | 2c5abd6a0f47e68519987f92a4ac6a9fbfb818d0 /source3/include | |
parent | a8a0dd4241d3717b9b7273ac44de08c24835eeef (diff) | |
download | samba-d331624fdfe9fc72f1da7fd01c59a1a20cf1c7d7.tar.gz samba-d331624fdfe9fc72f1da7fd01c59a1a20cf1c7d7.tar.bz2 samba-d331624fdfe9fc72f1da7fd01c59a1a20cf1c7d7.zip |
Add server_info to pipes_struct
(This used to be commit d621867bb8767e1c4236d28dd9294a61db6cbb10)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/ntdomain.h | 2 | ||||
-rw-r--r-- | source3/include/proto.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/ntdomain.h b/source3/include/ntdomain.h index caf7e3431c..352d17bd3b 100644 --- a/source3/include/ntdomain.h +++ b/source3/include/ntdomain.h @@ -215,6 +215,8 @@ typedef struct pipes_struct { uint16 vuid; /* points to the unauthenticated user that opened this pipe. */ + struct auth_serversupplied_info *server_info; + fstring name; fstring pipe_srv_name; diff --git a/source3/include/proto.h b/source3/include/proto.h index 1eb5fbda03..6525b838f1 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -122,6 +122,8 @@ NTSTATUS make_serverinfo_from_username(TALLOC_CTX *mem_ctx, struct auth_serversupplied_info *copy_serverinfo(TALLOC_CTX *mem_ctx, auth_serversupplied_info *src); bool init_guest_info(void); +bool server_info_set_session_key(struct auth_serversupplied_info *info, + DATA_BLOB session_key); NTSTATUS make_server_info_guest(TALLOC_CTX *mem_ctx, auth_serversupplied_info **server_info); bool copy_current_user(struct current_user *dst, struct current_user *src); |