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)
commitf76c037255a6a79d11bec65e863e009a41a4f0fd
treeb9e7543593960af67f4b1eb403d0a0447c6cce42
parent1b6d01e1152d1ac64e3b1f721227d06061982112
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.
source/include/includes.h
source/include/ntdomain.h
source/include/proto.h
source/include/rpc_samr.h
source/include/rpc_samr_old.h [new file with mode: 0644]
source/rpc_client/cli_samr.c
source/rpc_parse/parse_samr.c
source/rpc_server/srv_pipe.c
source/rpc_server/srv_samr.c
source/rpcclient/cmd_samr.c
source/script/mkproto.awk