the beginnings of a new scheme I've working on to allow an easier
authorAndrew Tridgell <tridge@samba.org>
Tue, 9 May 2000 13:28:19 +0000 (13:28 +0000)
committerAndrew Tridgell <tridge@samba.org>
Tue, 9 May 2000 13:28:19 +0000 (13:28 +0000)
commitc23e01d049cc7aee34e8ac83efeb74c09aa257a2
tree3e18583946ecfce1474bae792f2449be5ad66139
parentfe7f54bc996fee425b57951cb6c167c277a45f4e
the beginnings of a new scheme I've working on to allow an easier
head/tng merge.

It goes something like this:

- headers from tng get copied over one at a time

- the old headers get renamed to *_old.h

- server side code that used the old headers gets a
  #define OLD_NTDOMAIN 1
  #undef OLD_NTDOMAIN
  at the start and end of the code

- mkproto.awk recognises these special defines and does magic stuff so
  that each .c file sees the right headers

- we start moving the rpc client libraries from tng to head.

if this goes OK then, in theory, we should be able to move the client
side rpc code from tng to head without disturbing the existing head
server side code. Then when that works we can consider merging the
server side.

it remains to be seen if this scheme will work. So far I've moved
rpc_samr.h and don't seem to have broken anything.

Note this this is still a very delicate operation, as at every step of
the way I want to keep head fully functional. Please don't take part
unless you discuss it with me first.
(This used to be commit f76c037255a6a79d11bec65e863e009a41a4f0fd)
source3/include/includes.h
source3/include/ntdomain.h
source3/include/proto.h
source3/include/rpc_samr.h
source3/include/rpc_samr_old.h [new file with mode: 0644]
source3/rpc_client/cli_samr.c
source3/rpc_parse/parse_samr.c
source3/rpc_server/srv_pipe.c
source3/rpc_server/srv_samr.c
source3/rpcclient/cmd_samr.c
source3/script/mkproto.awk