From c29364f4b0e20b22f9c3b6fb79a28fc2d063a874 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 17 Sep 2009 18:26:57 +0200 Subject: [PATCH] named_pipe_auth.idl: add infrastructure to pass delegated credentials metze --- librpc/idl/named_pipe_auth.idl | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/librpc/idl/named_pipe_auth.idl b/librpc/idl/named_pipe_auth.idl index fd3f563c5323..43db98932737 100644 --- a/librpc/idl/named_pipe_auth.idl +++ b/librpc/idl/named_pipe_auth.idl @@ -24,10 +24,26 @@ interface named_pipe_auth [size_is(session_key_length)] uint8 *session_key; } named_pipe_auth_req_info2; + typedef struct { + [charset(UTF8),string] uint8 *client_name; + [charset(DOS),string] uint8 *client_addr; + uint16 client_port; + [charset(UTF8),string] uint8 *server_name; + [charset(DOS),string] uint8 *server_addr; + uint16 server_port; + netr_SamInfo3 *sam_info3; + uint32 session_key_length; + [size_is(session_key_length)] uint8 *session_key; + uint32 gssapi_delegated_creds_length; + [size_is(gssapi_delegated_creds_length)] + uint8 *gssapi_delegated_creds; + } named_pipe_auth_req_info3; + typedef [switch_type(uint32)] union { [case(0)] ;/* anonymous */ [case(1)] netr_SamInfo3 info1; [case(2)] named_pipe_auth_req_info2 info2; + [case(3)] named_pipe_auth_req_info3 info3; } named_pipe_auth_req_info; typedef [public,gensize] struct { @@ -45,10 +61,17 @@ interface named_pipe_auth hyper allocation_size; } named_pipe_auth_rep_info2; + typedef struct { + uint16 file_type; + uint16 device_state; + hyper allocation_size; + } named_pipe_auth_rep_info3; + typedef [switch_type(uint32)] union { [case(0)] ; [case(1)] ; [case(2)] named_pipe_auth_rep_info2 info2; + [case(3)] named_pipe_auth_rep_info3 info3; } named_pipe_auth_rep_info; typedef [public,gensize] struct { -- 2.34.1