CVS update: samba4/source/librpc/ndr

2004-02-03 Thread Stefan Metzmacher

Date:   Tue Feb  3 14:56:07 2004
Author: metze

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv24157/source/librpc/ndr

Modified Files:
ndr.c 
Log Message:
- add 'print' to the DCERPC binding strings

  e.g.
  ncacn_np:myserver:[samr,sign,print]

  will now enable the packet debugging

  and the debugging is not bound anymore to the debuglevel = 2
  in the torture tests

- also the dcesrv_remote module now supports debugging of the packets
  use the 'dcerpc_remote:binding' smb.conf parameter.

metze


Revisions:
ndr.c   1.33 = 1.34

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.33r2=1.34


CVS update: samba4/source/librpc/ndr

2004-01-10 Thread tridge

Date:   Sun Jan 11 05:16:07 2004
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv16540

Modified Files:
ndr_sec.c 
Log Message:
added dom_sid_string() function



Revisions:
ndr_sec.c   1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.c.diff?r1=1.11r2=1.12


CVS update: samba4/source/librpc/ndr

2004-01-08 Thread Stefan Metzmacher

Date:   Thu Jan  8 22:55:26 2004
Author: metze

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv9405/librpc/ndr

Modified Files:
ndr_sec.c 
Log Message:
This patch adds a better dcerpc server infastructure.

1.) We now register endpoint servers add startup via register_backend()
and later use the smb.conf 'dcerpc endpoint servers' parameter to setup the 
dcesrv_context

2.) each endpoint server can register at context creation time as much interfaces as 
it wants
(multiple interfaces on one endpoint are supported!)
(NOTE:  there's a difference between 'endpoint server' and 'endpoint'!
for details look at rpc_server/dcesrv_server.h)

3.) one endpoint can have a security descriptor registered to it self
this will be checked in the future when a client wants to connect
to an smb pipe endpoint.

4.) we now have a 'remote' endpoint server, which works like the ntvfs_cifs module
it takes this options in the [globals] section:

dcerpc remote:interfaces = srvsvc, winreg, w32time, epmapper
dcerpc remote:binding = ...
dcerpc remote:user = ...
dcerpc remote:password = ...

5.) we currently have tree endpoint servers: epmapper, rpcecho and remote

the default for the 'dcerpc endpiont servers = epmapper, rpcecho'

for testing you can also do 
dcerpc endpoint servers = rpcecho, remote, epmapper
dcerpc remote:interfaces = srvsvc, samr, netlogon

6,) please notice the the epmapper now only returns NO_ENTRIES
(but I think we'll find a solution for this too:-)

7.) also there're some other stuff left, but step by step :-)

This patch also includes updates for the 
register_subsystem() , ntvfs_init(), and some other funtions
to check for duplicate subsystem registration


metze

(hmmm, my first large commit...I hope it works as supposed :-)



Revisions:
ndr_sec.c   1.10 = 1.11

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.c.diff?r1=1.10r2=1.11


CVS update: samba4/source/librpc/ndr

2003-12-30 Thread tridge

Date:   Wed Dec 31 01:32:33 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv11121

Modified Files:
libndr.h ndr_basic.c 
Log Message:
the endpoint mapper now works in bigendian mode


Revisions:
libndr.h1.32 = 1.33

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.32r2=1.33
ndr_basic.c 1.43 = 1.44

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.43r2=1.44


CVS update: samba4/source/librpc/ndr

2003-12-19 Thread tridge

Date:   Fri Dec 19 23:44:20 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv17409

Modified Files:
ndr.c 
Log Message:
addition of samr_SetSecurity() from kai

we needed to adjust the alignment of [relative] buffers for this to
work. I wonder if they are always 4 byte aligned?


Revisions:
ndr.c   1.32 = 1.33

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.32r2=1.33


CVS update: samba4/source/librpc/ndr

2003-12-16 Thread tridge

Date:   Tue Dec 16 09:02:07 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv30791

Modified Files:
ndr_basic.c 
Log Message:
a fairly large commit!

This adds support for bigendian rpc in the client. I have installed
SUN pcnetlink locally and am using it to test the samba4 rpc
code. This allows us to easily find places where we have stuffed up
the types (such as 2 uint16 versus a uint32), as testing both
big-endian and little-endian easily shows which is correct. I have now
used this to fix several bugs like that in the samba4 IDL.

In order to make this work I also had to redefine a GUID as a true
structure, not a blob. From the pcnetlink wire it is clear that it is
indeed defined as a structure (the byte order changes). This required
changing lots of Samba code to use a GUID as a structure.

I also had to fix the if_version code in dcerpc syntax IDs, as it
turns out they are a single uint32 not two uint16s.

The big-endian support is a bit ugly at the moment, and breaks the
layering in some places. More work is needed, especially on the server
side.


Revisions:
ndr_basic.c 1.40 = 1.41

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.40r2=1.41


CVS update: samba4/source/librpc/ndr

2003-12-16 Thread tridge

Date:   Tue Dec 16 09:20:34 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv1913

Modified Files:
ndr_basic.c 
Log Message:
added support for big-endian ucs2 strings (as used by big-endian
msrpc).

this was easier than I expected!


Revisions:
ndr_basic.c 1.41 = 1.42

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.41r2=1.42


CVS update: samba4/source/librpc/ndr

2003-12-16 Thread tridge

Date:   Tue Dec 16 12:11:00 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv2077

Modified Files:
ndr_basic.c 
Log Message:
fixed formatting of uuids in debug output



Revisions:
ndr_basic.c 1.42 = 1.43

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.42r2=1.43


CVS update: samba4/source/librpc/ndr

2003-12-11 Thread tridge

Date:   Fri Dec 12 03:58:37 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv16324

Modified Files:
ndr.c 
Log Message:
 * the RPC-ECHO pipe now works in smbd, as long as the data sizes
   don't cause fragmented pdus (I'll add fragments shortly)

 * change data_blob_talloc() to not zero memory when the 2nd argument
   is NULL. The zeroing just masks bugs, and can't even allow a DOS
   attack

 * modified pidl to ensure that [ref] arguments to the out side of
   functions are allocated when parsing the in side. This allows rpc
   backends to assume that [ref] variables are all setup. Doesn't work
   correctly for [ref] arrays yet

 * changed DLIST_ADD_END() to take the type instead of a tmp
   variable. This means you don't need to declare a silly tmp variable in
   the caller


Revisions:
ndr.c   1.31 = 1.32

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.31r2=1.32


CVS update: samba4/source/librpc/ndr

2003-11-30 Thread tpot

Date:   Sun Nov 30 11:57:40 2003
Author: tpot

Update of /data/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv16691/librpc/ndr

Modified Files:
ndr_spoolss_buf.c 
Log Message:
Added EnumPrinterDriver, GetPrinterDriver (still in progress)


Revisions:
ndr_spoolss_buf.c   1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss_buf.c.diff?r1=1.7r2=1.8


CVS update: samba4/source/librpc/ndr

2003-11-30 Thread tridge

Date:   Mon Dec  1 01:41:28 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv11009

Modified Files:
ndr_basic.c 
Log Message:
started adding netlogon IDL and test suite



Revisions:
ndr_basic.c 1.37 = 1.38

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.37r2=1.38


CVS update: samba4/source/librpc/ndr

2003-11-30 Thread tridge

Date:   Mon Dec  1 03:19:38 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv21913

Modified Files:
libndr.h ndr_basic.c 
Log Message:
added netr_ServerReqChallenge and cleaned up byte array printing




Revisions:
libndr.h1.30 = 1.31

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.30r2=1.31
ndr_basic.c 1.38 = 1.39

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.38r2=1.39


CVS update: samba4/source/librpc/ndr

2003-11-27 Thread tridge

Date:   Fri Nov 28 00:47:51 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv13610

Modified Files:
libndr.h ndr.c 
Log Message:
added auto-generation of the IDL interface tables. This makes two less
places that need to be edited when someone adds a new IDL file.


Revisions:
libndr.h1.29 = 1.30

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.29r2=1.30
ndr.c   1.30 = 1.31

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.30r2=1.31


CVS update: samba4/source/librpc/ndr

2003-11-27 Thread tpot

Date:   Fri Nov 28 05:02:32 2003
Author: tpot

Update of /data/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv10787/librpc/ndr

Modified Files:
ndr_spoolss_buf.c 
Log Message:
Added EnumJobs, GetJob, SetJob RPCs.


Revisions:
ndr_spoolss_buf.c   1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss_buf.c.diff?r1=1.6r2=1.7


CVS update: samba4/source/librpc/ndr

2003-11-25 Thread tridge

Date:   Wed Nov 26 01:16:21 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv28654

Modified Files:
ndr.c ndr_basic.c 
Log Message:
signed DCERPC over TCP now works !

 * moved ntlmssp code into libcli/auth/, and updated to latest ntlmssp
   code from samba3 (thanks Andrew! the new interface is great)

 * added signing/ntlmssp support in the dcerpc code

 * added a dcerpc_auth.c module for the various dcerpc auth mechanisms


Revisions:
ndr.c   1.29 = 1.30

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.29r2=1.30
ndr_basic.c 1.36 = 1.37

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.36r2=1.37


CVS update: samba4/source/librpc/ndr

2003-11-25 Thread tpot

Date:   Wed Nov 26 06:26:18 2003
Author: tpot

Update of /data/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv1374/librpc/ndr

Modified Files:
ndr_spoolss_buf.c 
Log Message:
Implemented EnumForms and GetForm.


Revisions:
ndr_spoolss_buf.c   1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss_buf.c.diff?r1=1.5r2=1.6


CVS update: samba4/source/librpc/ndr

2003-11-24 Thread tridge

Date:   Mon Nov 24 10:15:07 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv8220

Modified Files:
ndr_basic.c 
Log Message:
added tests for epm_Map endpointer map calls





Revisions:
ndr_basic.c 1.35 = 1.36

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.35r2=1.36


CVS update: samba4/source/librpc/ndr

2003-11-23 Thread tridge

Date:   Sun Nov 23 13:43:43 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv31580

Modified Files:
ndr.c 
Log Message:
added a tool called 'ndrdump' that allows you to dump NDR data
according to the current IDL taking the data from a file. In
combination with a little hack to ethereal to extract data this is a
quite powerful IDL development tool.


Revisions:
ndr.c   1.27 = 1.28

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.27r2=1.28


CVS update: samba4/source/librpc/ndr

2003-11-23 Thread tridge

Date:   Mon Nov 24 01:24:07 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv12561

Modified Files:
libndr.h ndr.c ndr_basic.c 
Log Message:
added the dcerpc remote management interfaces as mgmt.idl, and wrote a
test suite. The test suite dumps all of the interfaces available on
all pipes. There sure are a lot more interfaces on w2k3 than w2k !


Revisions:
libndr.h1.28 = 1.29

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.28r2=1.29
ndr.c   1.28 = 1.29

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.28r2=1.29
ndr_basic.c 1.33 = 1.34

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.33r2=1.34


CVS update: samba4/source/librpc/ndr

2003-11-23 Thread tridge

Date:   Mon Nov 24 03:21:39 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv25499

Modified Files:
ndr_basic.c 
Log Message:
added tests for the remaining calls on the rpc management interface


Revisions:
ndr_basic.c 1.34 = 1.35

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.34r2=1.35


CVS update: samba4/source/librpc/ndr

2003-11-22 Thread tridge

Date:   Sat Nov 22 08:11:18 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv20524

Modified Files:
libndr.h ndr.c ndr_basic.c ndr_sec.c 
Log Message:
a fairly major upgrade to the dcerpc system

 * added a NDR validator. The way it works is that when the
   DCERPC_DEBUG_VALIDATE_* flags are set the dcerpc system will
   perform NDR buffer validation. On sending a request the packet is
   first marshalled, then unmarahslled, then marshalled again, and it is
   confirmed that the two marshalling results are idential. This
   ensures that our pull and push routines are absolutely in sync, so
   that we can be very confident that if a routine works in the client
   then the corresponding routine must work on the server side. A
   similar validation is performed on all replies.

 * a result of this change is that pidl is fussier about the [ref]
   tag. You can only use it on pointers (which is the only place it
   makes sense)

 * fixed a basic alignment bug in the push side of the NDR code

 * added server side pull/push support. Our dcerpc system is now fully
   ready to be used on the server side.

 * fixed the relative offset pointer list. It must be traversed in
   reverse order on push

 * added automatic value setting for the size parameter in outgoing
   SdBuf structures. 

 * expanded the ndr debugging code to always give a message on any
   failure

 * fixed the subcontext push code

 * fixed some memory leaks in smbtorture RPC tests





Revisions:
libndr.h1.26 = 1.27

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.26r2=1.27
ndr.c   1.23 = 1.24

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.23r2=1.24
ndr_basic.c 1.30 = 1.31

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.30r2=1.31
ndr_sec.c   1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.c.diff?r1=1.8r2=1.9


CVS update: samba4/source/librpc/ndr

2003-11-22 Thread tridge

Date:   Sat Nov 22 09:32:23 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv29646

Modified Files:
ndr.c 
Log Message:
 * fixed NDR flag inheritance across push subcontexts

 * don't consider not doing lsa_QueryInfoPolicy level 11 a failure
   (w2k3 doesn't have this level, w2k does)

 * on a NDR validation failure dump the failed data at level 3


Revisions:
ndr.c   1.24 = 1.25

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.24r2=1.25


CVS update: samba4/source/librpc/ndr

2003-11-22 Thread tridge

Date:   Sat Nov 22 11:49:11 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv12641

Modified Files:
ndr.c ndr_basic.c 
Log Message:
 * fixed null terminated string handling

 * fixed nested relative offsets in push functions

the spoolss torture test now passes!


Revisions:
ndr.c   1.25 = 1.26

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.25r2=1.26
ndr_basic.c 1.31 = 1.32

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.31r2=1.32


CVS update: samba4/source/librpc/ndr

2003-11-21 Thread tridge

Date:   Fri Nov 21 13:14:03 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv19413

Modified Files:
libndr.h ndr.c ndr_basic.c 
Log Message:

* changed the way strings are handled in pidl to a much more general
  interface. We now support an arbitrary set of flags to each parser,
  and these can be used to control the string types. I have provided
  some common IDL string types in librpc/idl/idl_types.h which needs to
  be included in every IDL file.

* added IDL for the endpoint mapper. Added a test suite that enumerates
  all endpoints on the server.


Revisions:
libndr.h1.25 = 1.26

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.25r2=1.26
ndr.c   1.21 = 1.22

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.21r2=1.22
ndr_basic.c 1.29 = 1.30

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.29r2=1.30


CVS update: samba4/source/librpc/ndr

2003-11-21 Thread tridge

Date:   Fri Nov 21 22:00:01 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv19368

Modified Files:
ndr.c 
Log Message:
cleaner handling of relative pointers to strings




Revisions:
ndr.c   1.22 = 1.23

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.22r2=1.23


CVS update: samba4/source/librpc/ndr

2003-11-21 Thread tridge

Date:   Sat Nov 22 01:27:40 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv9818

Modified Files:
ndr_sec.h 
Log Message:
added some explanations for epmapper IDL and dom_sid2







Revisions:
ndr_sec.h   1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.h.diff?r1=1.5r2=1.6


CVS update: samba4/source/librpc/ndr

2003-11-20 Thread tridge

Date:   Thu Nov 20 07:20:48 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv19175

Modified Files:
ndr_samr.c ndr_samr.h ndr_spoolss.c ndr_srvsvc.c ndr_srvsvc.h 
Log Message:
started on samr_SetUserInfo() 

cope with the 'samrtorturetest' user already existing in the samr test
(to cope with previously failed runs)


Revisions:
ndr_samr.c  1.26 = 1.27

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.26r2=1.27
ndr_samr.h  1.19 = 1.20

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.19r2=1.20
ndr_spoolss.c   1.18 = 1.19

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.18r2=1.19
ndr_srvsvc.c1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.c.diff?r1=1.5r2=1.6
ndr_srvsvc.h1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.h.diff?r1=1.5r2=1.6


CVS update: samba4/source/librpc/ndr

2003-11-20 Thread tridge

Date:   Thu Nov 20 10:29:48 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv16506

Modified Files:
ndr_atsvc.c ndr_dfs.c ndr_echo.c ndr_lsa.c ndr_misc.c 
ndr_samr.c ndr_samr.h ndr_spoolss.c ndr_srvsvc.c ndr_wkssvc.c 
Log Message:
 * fixed level2 of QueryUserInfo

 * added per-field testing of SetUserInfo

 * fixed strlen_m()




Revisions:
ndr_atsvc.c 1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_atsvc.c.diff?r1=1.1r2=1.2
ndr_dfs.c   1.13 = 1.14

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.13r2=1.14
ndr_echo.c  1.15 = 1.16

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.15r2=1.16
ndr_lsa.c   1.38 = 1.39

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.38r2=1.39
ndr_misc.c  1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_misc.c.diff?r1=1.4r2=1.5
ndr_samr.c  1.27 = 1.28

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.27r2=1.28
ndr_samr.h  1.20 = 1.21

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.20r2=1.21
ndr_spoolss.c   1.19 = 1.20

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.19r2=1.20
ndr_srvsvc.c1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.c.diff?r1=1.6r2=1.7
ndr_wkssvc.c1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.c.diff?r1=1.8r2=1.9


CVS update: samba4/source/librpc/ndr

2003-11-20 Thread tridge

Date:   Thu Nov 20 11:09:42 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv21920

Removed Files:
ndr_atsvc.c ndr_atsvc.h ndr_dfs.c ndr_dfs.h ndr_echo.c 
ndr_echo.h ndr_lsa.c ndr_lsa.h ndr_misc.c ndr_misc.h 
ndr_samr.c ndr_samr.h ndr_spoolss.c ndr_spoolss.h ndr_srvsvc.c 
ndr_srvsvc.h ndr_wkssvc.c ndr_wkssvc.h 
Log Message:
moved the pidl auto-generated files out of CVS



Revisions:
ndr_atsvc.c 1.2 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_atsvc.c?rev=1.2
ndr_atsvc.h 1.1 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_atsvc.h?rev=1.1
ndr_dfs.c   1.14 = NONE
http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c?rev=1.14
ndr_dfs.h   1.7 = NONE
http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.h?rev=1.7
ndr_echo.c  1.16 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c?rev=1.16
ndr_echo.h  1.10 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.h?rev=1.10
ndr_lsa.c   1.39 = NONE
http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c?rev=1.39
ndr_lsa.h   1.27 = NONE
http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h?rev=1.27
ndr_misc.c  1.5 = NONE
http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_misc.c?rev=1.5
ndr_misc.h  1.4 = NONE
http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_misc.h?rev=1.4
ndr_samr.c  1.29 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c?rev=1.29
ndr_samr.h  1.22 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h?rev=1.22
ndr_spoolss.c   1.20 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c?rev=1.20
ndr_spoolss.h   1.14 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h?rev=1.14
ndr_srvsvc.c1.7 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.c?rev=1.7
ndr_srvsvc.h1.6 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.h?rev=1.6
ndr_wkssvc.c1.9 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.c?rev=1.9
ndr_wkssvc.h1.9 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.h?rev=1.9


CVS update: samba4/source/librpc/ndr

2003-11-20 Thread tridge

Date:   Thu Nov 20 11:17:06 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv23121

Modified Files:
libndr.h 
Removed Files:
ndr_spoolss_buf.h 
Log Message:
* fixed libndr.h header

* make clean now removed the generated files






Revisions:
libndr.h1.22 = 1.23

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.22r2=1.23
ndr_spoolss_buf.h   1.3 = NONE

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss_buf.h?rev=1.3


CVS update: samba4/source/librpc/ndr

2003-11-20 Thread tpot

Date:   Thu Nov 20 21:52:40 2003
Author: tpot

Update of /data/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv9963/librpc/ndr

Modified Files:
libndr.h 
Log Message:
Add initial work on eventlog - doesn't quite work yet.


Revisions:
libndr.h1.23 = 1.24

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.23r2=1.24


CVS update: samba4/source/librpc/ndr

2003-11-20 Thread tridge

Date:   Fri Nov 21 02:19:42 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv9266

Modified Files:
ndr_basic.c ndr_basic.h 
Log Message:
added 4 more levels to samr_QueryDisplayInfo()



Revisions:
ndr_basic.c 1.28 = 1.29

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.28r2=1.29
ndr_basic.h 1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.h.diff?r1=1.1r2=1.2


CVS update: samba4/source/librpc/ndr

2003-11-20 Thread tridge

Date:   Fri Nov 21 02:44:31 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv12201

Modified Files:
ndr.c 
Log Message:
only display really verbose packet dumps when smbtorture is run at
debug level 2 or above. This is more useful for checking that
something hasn't broken without swamping yourself with output.




Revisions:
ndr.c   1.19 = 1.20

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.19r2=1.20


CVS update: samba4/source/librpc/ndr

2003-11-20 Thread tridge

Date:   Fri Nov 21 02:50:40 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv13153

Modified Files:
ndr.c 
Log Message:
avoid calling the print routines completely if debug level  2


Revisions:
ndr.c   1.20 = 1.21

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.20r2=1.21


CVS update: samba4/source/librpc/ndr

2003-11-20 Thread tpot

Date:   Fri Nov 21 05:28:36 2003
Author: tpot

Update of /data/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv29478/librpc/ndr

Modified Files:
libndr.h 
Log Message:
Start of winreg idl.  Implement OpenHKLM, GetVersion and CloseKey.


Revisions:
libndr.h1.24 = 1.25

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.24r2=1.25


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tridge

Date:   Wed Nov 19 07:31:17 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv26074

Modified Files:
ndr_echo.c ndr_echo.h ndr_lsa.c ndr_lsa.h 
Log Message:
after discussions with lukeh, I think we found a alignment bug in old
versions of midl, as used to build LSA. Work around it here.


Revisions:
ndr_echo.c  1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.11r2=1.12
ndr_echo.h  1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.h.diff?r1=1.6r2=1.7
ndr_lsa.c   1.36 = 1.37

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.36r2=1.37
ndr_lsa.h   1.26 = 1.27

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.26r2=1.27


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tridge

Date:   Wed Nov 19 09:15:28 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv5151

Modified Files:
libndr.h 
Added Files:
ndr_srvsvc.c ndr_srvsvc.h 
Log Message:
srvsvc IDL and test code from metze. Thanks!


Revisions:
ndr_srvsvc.cNONE = 1.1

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.c?rev=1.1
ndr_srvsvc.hNONE = 1.1

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.h?rev=1.1
libndr.h1.18 = 1.19

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.18r2=1.19


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tridge

Date:   Wed Nov 19 12:02:59 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv28243

Modified Files:
ndr_echo.c ndr_echo.h 
Log Message:
started to expand the echo tests to include more interesting test
cases. We fail one of the alignment tests.



Revisions:
ndr_echo.c  1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.12r2=1.13
ndr_echo.h  1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.h.diff?r1=1.7r2=1.8


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tridge

Date:   Wed Nov 19 22:10:14 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv13538

Modified Files:
libndr.h ndr.c ndr_dfs.c ndr_echo.c ndr_echo.h ndr_lsa.c 
ndr_samr.c ndr_spoolss.c ndr_spoolss_buf.c ndr_srvsvc.c 
ndr_srvsvc.h ndr_wkssvc.c ndr_wkssvc.h 
Log Message:
switched to a new way of handling unions, so that we can handle
alignment correctly for unions that have non-uint16 discriminants

fixed the union handling in srvsvc.idl. (metze, please take a look at
the changes, your IDL did match what was one the wire in most cases,
but isn't the way IDL is usually coded)


Revisions:
libndr.h1.19 = 1.20

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.19r2=1.20
ndr.c   1.17 = 1.18

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.17r2=1.18
ndr_dfs.c   1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.12r2=1.13
ndr_echo.c  1.13 = 1.14

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.13r2=1.14
ndr_echo.h  1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.h.diff?r1=1.8r2=1.9
ndr_lsa.c   1.37 = 1.38

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.37r2=1.38
ndr_samr.c  1.23 = 1.24

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.23r2=1.24
ndr_spoolss.c   1.15 = 1.16

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.15r2=1.16
ndr_spoolss_buf.c   1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss_buf.c.diff?r1=1.4r2=1.5
ndr_srvsvc.c1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.c.diff?r1=1.1r2=1.2
ndr_srvsvc.h1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.h.diff?r1=1.1r2=1.2
ndr_wkssvc.c1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.c.diff?r1=1.5r2=1.6
ndr_wkssvc.h1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.h.diff?r1=1.6r2=1.7


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tridge

Date:   Wed Nov 19 23:18:29 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv23393

Modified Files:
ndr_wkssvc.c ndr_wkssvc.h 
Log Message:
fixed wkssvc idl and test code for TransportEnum




Revisions:
ndr_wkssvc.c1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.c.diff?r1=1.6r2=1.7
ndr_wkssvc.h1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.h.diff?r1=1.7r2=1.8


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tridge

Date:   Thu Nov 20 00:57:59 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv5405

Modified Files:
ndr_srvsvc.c ndr_srvsvc.h ndr_wkssvc.c ndr_wkssvc.h 
Log Message:
 * changed to midl syntax using [case(x)] instead of case(x)

 * use empty defaults instead of a dummy empty structure



Revisions:
ndr_srvsvc.c1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.c.diff?r1=1.2r2=1.3
ndr_srvsvc.h1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.h.diff?r1=1.2r2=1.3
ndr_wkssvc.c1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.c.diff?r1=1.7r2=1.8
ndr_wkssvc.h1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.h.diff?r1=1.8r2=1.9


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tridge

Date:   Thu Nov 20 01:28:22 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv9477

Modified Files:
ndr_basic.c ndr_spoolss.c ndr_spoolss.h 
Log Message:
EnumPrinterData in spoolss now works


Revisions:
ndr_basic.c 1.26 = 1.27

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.26r2=1.27
ndr_spoolss.c   1.16 = 1.17

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.16r2=1.17
ndr_spoolss.h   1.13 = 1.14

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.13r2=1.14


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tridge

Date:   Thu Nov 20 03:09:08 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv21865

Modified Files:
libndr.h ndr.c ndr_basic.c ndr_misc.c ndr_samr.c ndr_samr.h 
ndr_spoolss.c 
Log Message:
added samr_LookupNames() and test code







Revisions:
libndr.h1.20 = 1.21

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.20r2=1.21
ndr.c   1.18 = 1.19

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.18r2=1.19
ndr_basic.c 1.27 = 1.28

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.27r2=1.28
ndr_misc.c  1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_misc.c.diff?r1=1.3r2=1.4
ndr_samr.c  1.24 = 1.25

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.24r2=1.25
ndr_samr.h  1.17 = 1.18

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.17r2=1.18
ndr_spoolss.c   1.17 = 1.18

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.17r2=1.18


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tridge

Date:   Thu Nov 20 03:17:55 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv22945

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
added samr_LookupRids() and test code


Revisions:
ndr_samr.c  1.25 = 1.26

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.25r2=1.26
ndr_samr.h  1.18 = 1.19

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.18r2=1.19


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tpot

Date:   Thu Nov 20 03:27:56 2003
Author: tpot

Update of /data/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv24177/librpc/ndr

Modified Files:
libndr.h 
Added Files:
ndr_atsvc.h ndr_atsvc.c 
Log Message:
Added ATSVC pipe.


Revisions:
ndr_atsvc.h NONE = 1.1

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_atsvc.h?rev=1.1
ndr_atsvc.c NONE = 1.1

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_atsvc.c?rev=1.1
libndr.h1.21 = 1.22

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.21r2=1.22


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread sharpe

Date:   Thu Nov 20 04:45:16 2003
Author: sharpe

Update of /data/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv32066/librpc/ndr

Modified Files:
ndr_srvsvc.c ndr_srvsvc.h 
Log Message:

Add a 1004 level for srvsvc.



Revisions:
ndr_srvsvc.c1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.c.diff?r1=1.3r2=1.4
ndr_srvsvc.h1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.h.diff?r1=1.3r2=1.4


CVS update: samba4/source/librpc/ndr

2003-11-19 Thread tridge

Date:   Thu Nov 20 05:33:56 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv5450

Modified Files:
ndr_srvsvc.c ndr_srvsvc.h 
Log Message:
fixed srvsvc_NetShareEnumAll()



Revisions:
ndr_srvsvc.c1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.c.diff?r1=1.4r2=1.5
ndr_srvsvc.h1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_srvsvc.h.diff?r1=1.4r2=1.5


CVS update: samba4/source/librpc/ndr

2003-11-18 Thread tridge

Date:   Tue Nov 18 10:20:53 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv21174

Modified Files:
ndr_samr.c ndr_spoolss.c ndr_spoolss.h 
Log Message:
added samr_CreateUser() samr_DeleteUser(). The test suite creates a
test user called samrtorturetest and then deletes it. The next step
is to do all possible user operations on that temporary user.



Revisions:
ndr_samr.c  1.20 = 1.21

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.20r2=1.21
ndr_spoolss.c   1.14 = 1.15

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.14r2=1.15
ndr_spoolss.h   1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.12r2=1.13


CVS update: samba4/source/librpc/ndr

2003-11-18 Thread tridge

Date:   Wed Nov 19 04:44:47 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv7479

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
possibly better handling of NULL secdesc (thanks to lukeh)


Revisions:
ndr_samr.c  1.21 = 1.22

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.21r2=1.22
ndr_samr.h  1.15 = 1.16

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.15r2=1.16


CVS update: samba4/source/librpc/ndr

2003-11-18 Thread tridge

Date:   Wed Nov 19 05:26:11 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv12264

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
fixed country code field in samr_UserInfo5


Revisions:
ndr_samr.c  1.22 = 1.23

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.22r2=1.23
ndr_samr.h  1.16 = 1.17

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.16r2=1.17


CVS update: samba4/source/librpc/ndr

2003-11-18 Thread tridge

Date:   Wed Nov 19 05:53:05 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv15105

Modified Files:
ndr_lsa.c ndr_lsa.h 
Log Message:
change to AuditEventsInfo struct from lukeh



Revisions:
ndr_lsa.c   1.34 = 1.35

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.34r2=1.35
ndr_lsa.h   1.24 = 1.25

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.24r2=1.25


CVS update: samba4/source/librpc/ndr

2003-11-18 Thread tridge

Date:   Wed Nov 19 05:54:21 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv15304

Modified Files:
ndr_lsa.c ndr_lsa.h 
Log Message:
removed an unused structure




Revisions:
ndr_lsa.c   1.35 = 1.36

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.35r2=1.36
ndr_lsa.h   1.25 = 1.26

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.25r2=1.26


CVS update: samba4/source/librpc/ndr

2003-11-17 Thread tridge

Date:   Mon Nov 17 09:34:09 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv17903

Modified Files:
ndr.c ndr_echo.c ndr_echo.h ndr_spoolss.c ndr_spoolss.h 
Log Message:
use [subcontext] to make GetPrinter a bit easier in smbtorture




Revisions:
ndr.c   1.15 = 1.16

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.15r2=1.16
ndr_echo.c  1.9 = 1.10

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.9r2=1.10
ndr_echo.h  1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.h.diff?r1=1.4r2=1.5
ndr_spoolss.c   1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.11r2=1.12
ndr_spoolss.h   1.9 = 1.10

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.9r2=1.10


CVS update: samba4/source/librpc/ndr

2003-11-17 Thread tridge

Date:   Mon Nov 17 11:55:44 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv3158

Modified Files:
libndr.h ndr.c ndr_basic.c ndr_dfs.c ndr_echo.c ndr_lsa.c 
ndr_samr.c ndr_spoolss.c ndr_spoolss.h 
Log Message:
 * add another WERR err code

 * use the top-level function argument printing to show more detail in
   RPC-* tests






Revisions:
libndr.h1.16 = 1.17

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.16r2=1.17
ndr.c   1.16 = 1.17

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.16r2=1.17
ndr_basic.c 1.24 = 1.25

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.24r2=1.25
ndr_dfs.c   1.10 = 1.11

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.10r2=1.11
ndr_echo.c  1.10 = 1.11

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.10r2=1.11
ndr_lsa.c   1.32 = 1.33

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.32r2=1.33
ndr_samr.c  1.16 = 1.17

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.16r2=1.17
ndr_spoolss.c   1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.12r2=1.13
ndr_spoolss.h   1.10 = 1.11

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.10r2=1.11


CVS update: samba4/source/librpc/ndr

2003-11-17 Thread tridge

Date:   Tue Nov 18 01:18:12 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv10894

Modified Files:
ndr_basic.c ndr_dfs.c ndr_lsa.c ndr_samr.c ndr_spoolss.c 
ndr_wkssvc.c ndr_wkssvc.h 
Log Message:
* use the new auto-generated debug code method.

* add a couple more info levels to wkssvc



Revisions:
ndr_basic.c 1.25 = 1.26

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.25r2=1.26
ndr_dfs.c   1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.11r2=1.12
ndr_lsa.c   1.33 = 1.34

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.33r2=1.34
ndr_samr.c  1.17 = 1.18

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.17r2=1.18
ndr_spoolss.c   1.13 = 1.14

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.13r2=1.14
ndr_wkssvc.c1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.c.diff?r1=1.1r2=1.2
ndr_wkssvc.h1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.h.diff?r1=1.1r2=1.2


CVS update: samba4/source/librpc/ndr

2003-11-17 Thread tridge

Date:   Tue Nov 18 03:27:39 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv31859

Modified Files:
ndr_wkssvc.c ndr_wkssvc.h 
Log Message:
fill in skeletons for the rest of the function calls in wkssvc (based
on function names in ethereal)

implement TransportEnum - quite a cute call, you can ask for the
workstations list of network transports, including its ethernet
address. 



Revisions:
ndr_wkssvc.c1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.c.diff?r1=1.2r2=1.3
ndr_wkssvc.h1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.h.diff?r1=1.2r2=1.3


CVS update: samba4/source/librpc/ndr

2003-11-17 Thread tridge

Date:   Tue Nov 18 05:00:54 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv11830

Modified Files:
ndr_dfs.h ndr_echo.h ndr_lsa.h ndr_misc.h ndr_samr.h 
ndr_spoolss.h ndr_wkssvc.h 
Log Message:
use the auto-generated UUID, version and name rather than listing them
in the dcerpc core code




Revisions:
ndr_dfs.h   1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.h.diff?r1=1.6r2=1.7
ndr_echo.h  1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.h.diff?r1=1.5r2=1.6
ndr_lsa.h   1.23 = 1.24

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.23r2=1.24
ndr_misc.h  1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_misc.h.diff?r1=1.3r2=1.4
ndr_samr.h  1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.12r2=1.13
ndr_spoolss.h   1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.11r2=1.12
ndr_wkssvc.h1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_wkssvc.h.diff?r1=1.3r2=1.4


CVS update: samba4/source/librpc/ndr

2003-11-17 Thread tridge

Date:   Tue Nov 18 05:20:50 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv14152

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
added samr_QuerySecurity() call that displays the ACL for any handle.


Revisions:
ndr_samr.c  1.18 = 1.19

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.18r2=1.19
ndr_samr.h  1.13 = 1.14

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.13r2=1.14


CVS update: samba4/source/librpc/ndr

2003-11-16 Thread tridge

Date:   Sun Nov 16 11:36:39 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv10068

Modified Files:
libndr.h ndr.c ndr_basic.c ndr_dfs.c ndr_echo.c ndr_lsa.c 
ndr_samr.c ndr_spoolss.c ndr_spoolss.h 
Added Files:
ndr_spoolss_buf.c ndr_spoolss_buf.h 
Log Message:
added support for level1 of EnumPrinters in spoolss. This uses a
number of magic add-ons to IDL to make it less painful, hopefully
this will make IDL generation useful for horrible systems like spoolss






Revisions:
ndr_spoolss_buf.c   NONE = 1.1

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss_buf.c?rev=1.1
ndr_spoolss_buf.h   NONE = 1.1

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss_buf.h?rev=1.1
libndr.h1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.11r2=1.12
ndr.c   1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.11r2=1.12
ndr_basic.c 1.19 = 1.20

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.19r2=1.20
ndr_dfs.c   1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.7r2=1.8
ndr_echo.c  1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.6r2=1.7
ndr_lsa.c   1.29 = 1.30

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.29r2=1.30
ndr_samr.c  1.13 = 1.14

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.13r2=1.14
ndr_spoolss.c   1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.4r2=1.5
ndr_spoolss.h   1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.2r2=1.3


CVS update: samba4/source/librpc/ndr

2003-11-16 Thread tridge

Date:   Sun Nov 16 13:49:08 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv13830

Modified Files:
libndr.h ndr.c ndr_basic.c ndr_spoolss.c ndr_spoolss.h 
ndr_spoolss_buf.c ndr_spoolss_buf.h 
Log Message:
use nstring and [relative] to support levels 1 and 2 of EnumPrinters
fully


Revisions:
libndr.h1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.12r2=1.13
ndr.c   1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.12r2=1.13
ndr_basic.c 1.20 = 1.21

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.20r2=1.21
ndr_spoolss.c   1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.5r2=1.6
ndr_spoolss.h   1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.3r2=1.4
ndr_spoolss_buf.c   1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss_buf.c.diff?r1=1.1r2=1.2
ndr_spoolss_buf.h   1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss_buf.h.diff?r1=1.1r2=1.2


CVS update: samba4/source/librpc/ndr

2003-11-16 Thread tridge

Date:   Mon Nov 17 03:38:03 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv5508

Modified Files:
ndr_spoolss.c ndr_spoolss.h 
Log Message:
added OpenPrinter and a test function. Note that the Samba3 structure
for OpenPrinter was wrong.



Revisions:
ndr_spoolss.c   1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.8r2=1.9
ndr_spoolss.h   1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.6r2=1.7


CVS update: samba4/source/librpc/ndr

2003-11-16 Thread tridge

Date:   Mon Nov 17 04:56:49 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv18402

Modified Files:
ndr.c ndr_spoolss.c ndr_spoolss.h ndr_spoolss_buf.c 
Log Message:
call OpenPrinterEx on each printer on the server, and then call
GetPrinter with all info levels on each printer



Revisions:
ndr.c   1.14 = 1.15

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.14r2=1.15
ndr_spoolss.c   1.9 = 1.10

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.9r2=1.10
ndr_spoolss.h   1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.7r2=1.8
ndr_spoolss_buf.c   1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss_buf.c.diff?r1=1.3r2=1.4


CVS update: samba4/source/librpc/ndr

2003-11-16 Thread tridge

Date:   Mon Nov 17 06:27:40 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv28558

Modified Files:
libndr.h ndr_basic.c ndr_dfs.c ndr_echo.c ndr_lsa.c ndr_misc.c 
ndr_misc.h ndr_samr.c ndr_sec.c ndr_sec.h ndr_spoolss.c 
ndr_spoolss.h 
Added Files:
ndr_basic.h 
Log Message:
security descriptors are no longer a special type, they are handled
using the [relative] property

this also fixes level3 of PrinterInfo (a relative secdesc)


Revisions:
ndr_basic.h NONE = 1.1

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.h?rev=1.1
libndr.h1.15 = 1.16

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.15r2=1.16
ndr_basic.c 1.23 = 1.24

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.23r2=1.24
ndr_dfs.c   1.9 = 1.10

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.9r2=1.10
ndr_echo.c  1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.8r2=1.9
ndr_lsa.c   1.31 = 1.32

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.31r2=1.32
ndr_misc.c  1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_misc.c.diff?r1=1.2r2=1.3
ndr_misc.h  1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_misc.h.diff?r1=1.2r2=1.3
ndr_samr.c  1.15 = 1.16

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.15r2=1.16
ndr_sec.c   1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.c.diff?r1=1.7r2=1.8
ndr_sec.h   1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.h.diff?r1=1.4r2=1.5
ndr_spoolss.c   1.10 = 1.11

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.10r2=1.11
ndr_spoolss.h   1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.8r2=1.9


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 07:51:08 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv5896

Modified Files:
ndr_lsa.c ndr_samr.c ndr_samr.h 
Log Message:
run LookupDomain on each domain returned from EnumDomains in samr


Revisions:
ndr_lsa.c   1.26 = 1.27

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.26r2=1.27
ndr_samr.c  1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.1r2=1.2
ndr_samr.h  1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.1r2=1.2


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 08:06:28 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv7578

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
added samr_OpenDomain() and samr_QueryDomainInfo() level 1



Revisions:
ndr_samr.c  1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.2r2=1.3
ndr_samr.h  1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.2r2=1.3


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 09:17:57 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv14702

Modified Files:
ndr_dfs.c ndr_echo.c ndr_lsa.c ndr_samr.c ndr_samr.h 
ndr_spoolss.c 
Log Message:
added another 11 levels of QueryDomainInfo




Revisions:
ndr_dfs.c   1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.6r2=1.7
ndr_echo.c  1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.5r2=1.6
ndr_lsa.c   1.27 = 1.28

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.27r2=1.28
ndr_samr.c  1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.3r2=1.4
ndr_samr.h  1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.3r2=1.4
ndr_spoolss.c   1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.1r2=1.2


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 09:39:37 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv17127

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
added samr_EnumDomainGroups and samr_EnumDomainUsers





Revisions:
ndr_samr.c  1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.4r2=1.5
ndr_samr.h  1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.4r2=1.5


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 10:03:01 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv19654

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
added samr_OpenUser, samr_EnumDomainAliases and samr_QueryUserInfo level 1






Revisions:
ndr_samr.c  1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.5r2=1.6
ndr_samr.h  1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.5r2=1.6


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 10:58:23 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv25650

Modified Files:
libndr.h ndr_basic.c ndr_samr.c ndr_samr.h 
Log Message:
added samr_UserInfo2 and samr_UserInfo3








Revisions:
libndr.h1.10 = 1.11

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.10r2=1.11
ndr_basic.c 1.17 = 1.18

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.17r2=1.18
ndr_samr.c  1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.6r2=1.7
ndr_samr.h  1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.6r2=1.7


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 11:13:43 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv27337

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
added samr UserInfo levels 4 to 20


Revisions:
ndr_samr.c  1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.7r2=1.8
ndr_samr.h  1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.7r2=1.8


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 11:33:55 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv29479

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
added UserInfo level 21



Revisions:
ndr_samr.c  1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.8r2=1.9
ndr_samr.h  1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.8r2=1.9


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 12:14:10 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv1913

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
added OpenGroup and QueryGroupInfo levels 1 to 4





Revisions:
ndr_samr.c  1.9 = 1.10

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.9r2=1.10
ndr_samr.h  1.9 = 1.10

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.9r2=1.10


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 12:37:55 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv5038

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
added OpenAlias and QueryAliasInfo levels 1 to 3




Revisions:
ndr_samr.c  1.10 = 1.11

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.10r2=1.11
ndr_samr.h  1.10 = 1.11

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.10r2=1.11


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 20:47:53 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv25647

Modified Files:
ndr_samr.c ndr_samr.h 
Log Message:
remember to samr_Close() policy handles after use





Revisions:
ndr_samr.c  1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.11r2=1.12
ndr_samr.h  1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.h.diff?r1=1.11r2=1.12


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sat Nov 15 20:56:12 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv26626

Modified Files:
ndr_spoolss.c 
Log Message:
the returned policy handle in spoolss_OpenPrinterEx() is pass by
reference

(tim, my apoligies if this conflicts with an uncomitted fix from you)


Revisions:
ndr_spoolss.c   1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.2r2=1.3


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tpot

Date:   Sun Nov 16 04:22:20 2003
Author: tpot

Update of /data/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv15979/librpc/ndr

Modified Files:
ndr_misc.h ndr_misc.c 
Log Message:
Added push/pull routines for uint8_buf IDL type used for spoolss buffers,
and possibly other places.


Revisions:
ndr_misc.h  1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_misc.h.diff?r1=1.1r2=1.2
ndr_misc.c  1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_misc.c.diff?r1=1.1r2=1.2


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tpot

Date:   Sun Nov 16 04:25:46 2003
Author: tpot

Update of /data/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv19768/librpc/ndr

Modified Files:
ndr_spoolss.h ndr_spoolss.c 
Log Message:
Commit autogenerated code for EnumPrinters and ClosePrinter.


Revisions:
ndr_spoolss.h   1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h.diff?r1=1.1r2=1.2
ndr_spoolss.c   1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c.diff?r1=1.3r2=1.4


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sun Nov 16 05:07:07 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv31342

Modified Files:
ndr_samr.c 
Log Message:
slightly more efficient strlen setting in lsa and samr strings (calls
strlen_m() once, not twice)




Revisions:
ndr_samr.c  1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_samr.c.diff?r1=1.12r2=1.13


CVS update: samba4/source/librpc/ndr

2003-11-15 Thread tridge

Date:   Sun Nov 16 06:00:15 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv16301

Modified Files:
ndr.c ndr_basic.c ndr_lsa.c ndr_lsa.h ndr_sec.c ndr_sec.h 
Log Message:
use the subcontext magic flag for sec_desc_buf



Revisions:
ndr.c   1.10 = 1.11

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.10r2=1.11
ndr_basic.c 1.18 = 1.19

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.18r2=1.19
ndr_lsa.c   1.28 = 1.29

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.28r2=1.29
ndr_lsa.h   1.22 = 1.23

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.22r2=1.23
ndr_sec.c   1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.c.diff?r1=1.6r2=1.7
ndr_sec.h   1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.h.diff?r1=1.3r2=1.4


CVS update: samba4/source/librpc/ndr

2003-11-14 Thread tridge

Date:   Fri Nov 14 07:20:37 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv8665

Modified Files:
ndr.c ndr_basic.c ndr_dfs.c ndr_dfs.h ndr_echo.c ndr_echo.h 
ndr_lsa.c 
Log Message:
we can now do a level1 NetDfsEnum()



Revisions:
ndr.c   1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.8r2=1.9
ndr_basic.c 1.14 = 1.15

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.14r2=1.15
ndr_dfs.c   1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.1r2=1.2
ndr_dfs.h   1.1 = 1.2

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.h.diff?r1=1.1r2=1.2
ndr_echo.c  1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.3r2=1.4
ndr_echo.h  1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.h.diff?r1=1.3r2=1.4
ndr_lsa.c   1.21 = 1.22

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.21r2=1.22


CVS update: samba4/source/librpc/ndr

2003-11-14 Thread tridge

Date:   Fri Nov 14 07:56:38 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv16035

Modified Files:
ndr_dfs.c ndr_dfs.h ndr_lsa.c ndr_lsa.h 
Log Message:
* fixed lsa_LookupPrivName

* added levels 2 and 3 of dfs_Enum





Revisions:
ndr_dfs.c   1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.2r2=1.3
ndr_dfs.h   1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.h.diff?r1=1.2r2=1.3
ndr_lsa.c   1.22 = 1.23

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.22r2=1.23
ndr_lsa.h   1.19 = 1.20

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.19r2=1.20


CVS update: samba4/source/librpc/ndr

2003-11-14 Thread tridge

Date:   Fri Nov 14 08:27:30 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv22877

Modified Files:
ndr_basic.c ndr_dfs.c ndr_dfs.h ndr_sec.c 
Log Message:
* added levels 4, 200 and 300 to NetDfsEnum. 200 and 300 don't work
  properly, I'm still investigating that.

* changed dcerpc fault status code to NT_STATUS_NETWORK_WRITE_FAULT,
  which I think is a better mapping


Revisions:
ndr_basic.c 1.15 = 1.16

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.15r2=1.16
ndr_dfs.c   1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.3r2=1.4
ndr_dfs.h   1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.h.diff?r1=1.3r2=1.4
ndr_sec.c   1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.c.diff?r1=1.4r2=1.5


CVS update: samba4/source/librpc/ndr

2003-11-14 Thread tridge

Date:   Fri Nov 14 13:16:24 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv29803

Modified Files:
ndr_dfs.c ndr_dfs.h ndr_echo.c ndr_lsa.c 
Log Message:
added the dfs_GetInfo all - all levels


Revisions:
ndr_dfs.c   1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.4r2=1.5
ndr_dfs.h   1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.h.diff?r1=1.4r2=1.5
ndr_echo.c  1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.4r2=1.5
ndr_lsa.c   1.23 = 1.24

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.23r2=1.24


CVS update: samba4/source/librpc/ndr

2003-11-14 Thread tridge

Date:   Fri Nov 14 21:39:02 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv31214

Modified Files:
ndr_dfs.c ndr_dfs.h ndr_lsa.c ndr_lsa.h 
Log Message:
it turns out that all MS servers ignore the artifact struct_len fields
in OpenPolicy and OpenPolicy2, so we don't in fact need the
[struct_len] attribute. This makes our IDL much closer to the MS IDL.



Revisions:
ndr_dfs.c   1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c.diff?r1=1.5r2=1.6
ndr_dfs.h   1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.h.diff?r1=1.5r2=1.6
ndr_lsa.c   1.24 = 1.25

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.24r2=1.25
ndr_lsa.h   1.20 = 1.21

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.20r2=1.21


CVS update: samba4/source/librpc/ndr

2003-11-14 Thread tridge

Date:   Sat Nov 15 04:42:42 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv18067

Modified Files:
libndr.h ndr.c ndr_basic.c ndr_lsa.c ndr_lsa.h ndr_sec.c 
ndr_sec.h 
Log Message:
added lsa_QuerySecObj() and the necessary sec_desc_buf supporting code

also adding printing of security descriptors


Revisions:
libndr.h1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.7r2=1.8
ndr.c   1.9 = 1.10

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.9r2=1.10
ndr_basic.c 1.16 = 1.17

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.16r2=1.17
ndr_lsa.c   1.25 = 1.26

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.25r2=1.26
ndr_lsa.h   1.21 = 1.22

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.21r2=1.22
ndr_sec.c   1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.c.diff?r1=1.5r2=1.6
ndr_sec.h   1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.h.diff?r1=1.2r2=1.3


CVS update: samba4/source/librpc/ndr

2003-11-14 Thread tpot

Date:   Sat Nov 15 05:42:49 2003
Author: tpot

Update of /data/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv24886/librpc/ndr

Modified Files:
libndr.h 
Added Files:
ndr_spoolss.h ndr_spoolss.c 
Log Message:
Skeleton IDL for SPOOLSS pipe.  For this inital version, only OpenPrinterEx
works but without a devicemode.


Revisions:
ndr_spoolss.h   NONE = 1.1

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.h?rev=1.1
ndr_spoolss.c   NONE = 1.1

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_spoolss.c?rev=1.1
libndr.h1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.8r2=1.9


CVS update: samba4/source/librpc/ndr

2003-11-13 Thread tridge

Date:   Thu Nov 13 09:26:26 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv461

Modified Files:
libndr.h ndr.c ndr_basic.c ndr_echo.c ndr_echo.h ndr_lsa.c 
ndr_lsa.h 
Added Files:
ndr_dfs.c ndr_dfs.h 
Log Message:
* fixed conformant arrays in structures

* expanded the rpcecho test

* started adding the NETDFS pipe


Revisions:
ndr_dfs.c   NONE = 1.1
http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.c?rev=1.1
ndr_dfs.h   NONE = 1.1
http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_dfs.h?rev=1.1
libndr.h1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.6r2=1.7
ndr.c   1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.7r2=1.8
ndr_basic.c 1.13 = 1.14

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.13r2=1.14
ndr_echo.c  1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.c.diff?r1=1.2r2=1.3
ndr_echo.h  1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_echo.h.diff?r1=1.2r2=1.3
ndr_lsa.c   1.20 = 1.21

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.20r2=1.21
ndr_lsa.h   1.18 = 1.19

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.18r2=1.19


CVS update: samba4/source/librpc/ndr

2003-11-11 Thread tridge

Date:   Tue Nov 11 07:57:08 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv31583

Modified Files:
libndr.h ndr_basic.c ndr_lsa.c ndr_lsa.h ndr_sec.c 
Log Message:
added 9 more info levels to lsa_QueryInfoPolicy




Revisions:
libndr.h1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.4r2=1.5
ndr_basic.c 1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.11r2=1.12
ndr_lsa.c   1.18 = 1.19

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.18r2=1.19
ndr_lsa.h   1.16 = 1.17

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.16r2=1.17
ndr_sec.c   1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.c.diff?r1=1.3r2=1.4


CVS update: samba4/source/librpc/ndr

2003-11-11 Thread tridge

Date:   Wed Nov 12 05:34:21 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv11079

Modified Files:
libndr.h ndr.c ndr_basic.c ndr_lsa.c ndr_lsa.h 
Log Message:
lsa_PrivilegeSet seems to be a very strange beast indeed. It has a
constant sized array of size 1 at the end?


Revisions:
libndr.h1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.5r2=1.6
ndr.c   1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.6r2=1.7
ndr_basic.c 1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.12r2=1.13
ndr_lsa.c   1.19 = 1.20

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.19r2=1.20
ndr_lsa.h   1.17 = 1.18

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.17r2=1.18


CVS update: samba4/source/librpc/ndr

2003-11-10 Thread tridge

Date:   Mon Nov 10 12:12:05 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv9437

Modified Files:
ndr_lsa.c ndr_lsa.h 
Log Message:
added IDL and test for lsa_EnumAccountRights()

interestingly, win2000 doesn't return the same list of rights via
lsa_EnumAccountRights() and lsa_EnumPrivsAccount()




Revisions:
ndr_lsa.c   1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.11r2=1.12
ndr_lsa.h   1.11 = 1.12

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.11r2=1.12


CVS update: samba4/source/librpc/ndr

2003-11-10 Thread tridge

Date:   Mon Nov 10 12:42:29 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv13650

Modified Files:
ndr_lsa.c ndr_lsa.h 
Log Message:
added idl and test code for lsa_LookupPrivName()


Revisions:
ndr_lsa.c   1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.12r2=1.13
ndr_lsa.h   1.12 = 1.13

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.12r2=1.13


CVS update: samba4/source/librpc/ndr

2003-11-10 Thread tridge

Date:   Tue Nov 11 02:02:18 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv19177

Modified Files:
ndr_basic.c ndr_lsa.c ndr_lsa.h 
Log Message:
started adding support for lsa_QueryInfoPolicy


Revisions:
ndr_basic.c 1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.6r2=1.7
ndr_lsa.c   1.13 = 1.14

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.13r2=1.14
ndr_lsa.h   1.13 = 1.14

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.13r2=1.14


CVS update: samba4/source/librpc/ndr

2003-11-10 Thread tridge

Date:   Tue Nov 11 04:04:24 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv1666

Modified Files:
libndr.h ndr.c ndr_basic.c ndr_lsa.c ndr_sec.c 
Log Message:
automatically generate ndr_print_*() functions for every IDL
structure. This allows easy debug and test tool writing without having
to write functions that print every element of complex structures.



Revisions:
libndr.h1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.2r2=1.3
ndr.c   1.4 = 1.5

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.4r2=1.5
ndr_basic.c 1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.7r2=1.8
ndr_lsa.c   1.14 = 1.15

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.14r2=1.15
ndr_sec.c   1.2 = 1.3

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_sec.c.diff?r1=1.2r2=1.3


CVS update: samba4/source/librpc/ndr

2003-11-10 Thread tridge

Date:   Tue Nov 11 04:38:46 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv5878

Modified Files:
libndr.h ndr.c ndr_basic.c ndr_lsa.c 
Log Message:
start using automatic union printing




Revisions:
libndr.h1.3 = 1.4

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/libndr.h.diff?r1=1.3r2=1.4
ndr.c   1.5 = 1.6

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr.c.diff?r1=1.5r2=1.6
ndr_basic.c 1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.8r2=1.9
ndr_lsa.c   1.15 = 1.16

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.15r2=1.16


CVS update: samba4/source/librpc/ndr

2003-11-10 Thread tridge

Date:   Tue Nov 11 06:22:54 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv20409

Modified Files:
ndr_basic.c ndr_lsa.c ndr_lsa.h 
Log Message:
support lsa_AuditEventsInfo






Revisions:
ndr_basic.c 1.9 = 1.10

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.9r2=1.10
ndr_lsa.c   1.16 = 1.17

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.16r2=1.17
ndr_lsa.h   1.14 = 1.15

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.14r2=1.15


CVS update: samba4/source/librpc/ndr

2003-11-10 Thread tridge

Date:   Tue Nov 11 06:54:49 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv23995

Modified Files:
ndr_basic.c ndr_lsa.c ndr_lsa.h 
Log Message:
added QueryPolicyInfo/PrimaryDomainInfo idl and test code


Revisions:
ndr_basic.c 1.10 = 1.11

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_basic.c.diff?r1=1.10r2=1.11
ndr_lsa.c   1.17 = 1.18

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.17r2=1.18
ndr_lsa.h   1.15 = 1.16

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.15r2=1.16


CVS update: samba4/source/librpc/ndr

2003-11-09 Thread tridge

Date:   Sun Nov  9 08:30:05 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv16104

Modified Files:
ndr_lsa.c ndr_lsa.h 
Log Message:
- added the rest of the LSA calls as stubs

- auto-generate the client calls with 'make idl'





Revisions:
ndr_lsa.c   1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.6r2=1.7
ndr_lsa.h   1.6 = 1.7

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.6r2=1.7


CVS update: samba4/source/librpc/ndr

2003-11-09 Thread tridge

Date:   Sun Nov  9 09:43:57 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv24537

Modified Files:
ndr_lsa.c ndr_lsa.h 
Log Message:
added lsa_EnumPrivs idl and test code




Revisions:
ndr_lsa.c   1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.7r2=1.8
ndr_lsa.h   1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.7r2=1.8


CVS update: samba4/source/librpc/ndr

2003-11-09 Thread tridge

Date:   Sun Nov  9 10:01:13 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv26570

Modified Files:
ndr_lsa.c ndr_lsa.h 
Log Message:
added lsa_EnumTrustDom





Revisions:
ndr_lsa.c   1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.8r2=1.9
ndr_lsa.h   1.8 = 1.9

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.8r2=1.9


CVS update: samba4/source/librpc/ndr

2003-11-09 Thread tridge

Date:   Sun Nov  9 11:01:16 2003
Author: tridge

Update of /home/cvs/samba4/source/librpc/ndr
In directory dp.samba.org:/tmp/cvs-serv1126

Modified Files:
ndr_lsa.c ndr_lsa.h 
Log Message:
- fixed lsa_EnumTrustDom

- added lsa_OpenAccount

- handle STATUS_SOME_UNMAPPED







Revisions:
ndr_lsa.c   1.9 = 1.10

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.c.diff?r1=1.9r2=1.10
ndr_lsa.h   1.9 = 1.10

http://www.samba.org/cgi-bin/cvsweb/samba4/source/librpc/ndr/ndr_lsa.h.diff?r1=1.9r2=1.10


  1   2   >