r21515: add some more PFC_FLAGS from the DCERPC spec, and fix some names
authorStefan Metzmacher <metze@samba.org>
Fri, 23 Feb 2007 11:00:20 +0000 (11:00 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:48:48 +0000 (14:48 -0500)
commit2d8c85397d9027485ed6dbdcca87cc1ec84c7b76
tree02a447dd2d29be650a97f9de55f9a3c4427b1e70
parent22bc6d541e9de2dc494cda154d6fabbc3c907da8
r21515: add some more PFC_FLAGS from the DCERPC spec, and fix some names

also make it possible to pass and get the assoc_group_id for
a pipe.

also make it possible to pass the DCERPC_PFC_FLAG_CONC_MPX flag
in bind requests. From the spec it triggers support for
concurrent multiplexing on a single connection.

w2k3 uses the assoc_group_id feature when it becomes a domain controller
of an existing domain. Know the ugly part, with this it's possible to
use a policy handle from one connection on a different one...

typically the DsBind() call is on the 1st connection while DsGetNCChanges()
call using the first connections bind handle are on the 2nd connection.

The second connection also has the DCERPC_PFC_FLAG_CONC_MPX flag attached,
but that doesn't seem to be related to the cross connection handle usage

Can anyone think of a nice way to implement the assoc_group_id stuff in our server?

metze
source/librpc/idl/dcerpc.idl
source/librpc/rpc/dcerpc.c
source/librpc/rpc/dcerpc.h
source/librpc/rpc/dcerpc_util.c
source/rpc_server/dcerpc_server.c