diff options
Diffstat (limited to 'source4/librpc/rpc/dcerpc.h')
-rw-r--r-- | source4/librpc/rpc/dcerpc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/librpc/rpc/dcerpc.h b/source4/librpc/rpc/dcerpc.h index 6bde842371..b9d0f395ee 100644 --- a/source4/librpc/rpc/dcerpc.h +++ b/source4/librpc/rpc/dcerpc.h @@ -94,6 +94,8 @@ struct dcerpc_connection { struct dcerpc_pipe { uint32_t context_id; + uint32_t assoc_group_id; + struct dcerpc_syntax_id syntax; struct dcerpc_syntax_id transfer_syntax; @@ -151,6 +153,9 @@ struct dcerpc_pipe { /* select NTLM auth */ #define DCERPC_AUTH_NTLM (1<<18) +/* this triggers the DCERPC_PFC_FLAG_CONC_MPX flag in the bind request */ +#define DCERPC_CONCURRENT_MULTIPLEX (1<<19) + /* this is used to find pointers to calls */ @@ -197,6 +202,7 @@ struct dcerpc_binding { const char *endpoint; const char **options; uint32_t flags; + uint32_t assoc_group_id; }; |