diff options
Diffstat (limited to 'source3/include/client.h')
-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; |