r4616: the first phase in the addition of proper support for
authorAndrew Tridgell <tridge@samba.org>
Sun, 9 Jan 2005 08:34:05 +0000 (08:34 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:08:34 +0000 (13:08 -0500)
commit4004c69937be7e5dae56f9567ca607f982d395d3
treec46dc1f1b975e790d997c54773c80cbf1f6a061c
parent0e61a422bd9a1596a284c176f033e958bbeaa8ce
r4616: the first phase in the addition of proper support for
dcerpc_alter_context and multiple context_ids in the dcerpc client
library.

This stage does the following:

 - split "struct dcerpc_pipe" into two parts, the main part being "struct dcerpc_connection", which
   contains all the parts not dependent on the context, and "struct dcerpc_pipe" which has
   the context dependent part. This is similar to the layering in libcli_*() for SMB

 - disable the current dcerpc_alter code. I've used a #warning until i
   get the 2nd phase finished. I don't know how portable #warning is, but
   it won't be long before I add full alter context support anyway, so it won't last long

 - cleanup the allocation of dcerpc_pipe structures. The previous code
   was quite awkward.
23 files changed:
source/build/pidl/client.pm
source/build/pidl/proxy.pm
source/lib/dcom/common/main.c
source/libcli/util/clilsa.c
source/librpc/rpc/dcerpc.c
source/librpc/rpc/dcerpc.h
source/librpc/rpc/dcerpc_auth.c
source/librpc/rpc/dcerpc_ntlm.c
source/librpc/rpc/dcerpc_schannel.c
source/librpc/rpc/dcerpc_smb.c
source/librpc/rpc/dcerpc_sock.c
source/librpc/rpc/dcerpc_spnego.c
source/librpc/rpc/dcerpc_util.c
source/rpc_server/remote/dcesrv_remote.c
source/torture/rpc/mgmt.c
source/torture/rpc/netlogon.c
source/torture/rpc/samlogon.c
source/torture/rpc/samsync.c
source/torture/rpc/scanner.c
source/torture/rpc/schannel.c
source/torture/rpc/spoolss.c
source/torture/rpc/xplogin.c
source/utils/ndrdump.c