diff options
author | Volker Lendecke <vl@samba.org> | 2008-04-21 22:27:29 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-04-25 11:12:50 +0200 |
commit | 862d7e32b90f7020d46e025de918f6338f40441b (patch) | |
tree | 553562c4c7ee17ada610cc26ab93630f7224b5ce /source3/include | |
parent | 9e9d40d0977add05ac65d35251c1a5986c721e48 (diff) | |
download | samba-862d7e32b90f7020d46e025de918f6338f40441b.tar.gz samba-862d7e32b90f7020d46e025de918f6338f40441b.tar.bz2 samba-862d7e32b90f7020d46e025de918f6338f40441b.zip |
Move user/domain from rpc_pipe_client to cli_pipe_auth_data
(This used to be commit 42de50d2cd43e760d776694f7b5f003ba51d7f84)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index d866c09cce..3459ae20d0 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -49,6 +49,10 @@ struct print_job_info { struct cli_pipe_auth_data { enum pipe_auth_type auth_type; /* switch for the union below. Defined in ntdomain.h */ enum pipe_auth_level auth_level; /* defined in ntdomain.h */ + + char *domain; + char *user_name; + union { struct schannel_auth_struct *schannel_auth; NTLMSSP_STATE *ntlmssp_state; @@ -71,9 +75,6 @@ struct rpc_pipe_client { char *desthost; char *srv_name_slash; - char *domain; - char *user_name; - uint16 max_xmit_frag; uint16 max_recv_frag; |