CVS update: samba/source/rpc_server

jmcd at samba.org jmcd at samba.org
Fri Oct 31 03:38:39 EST 2003


Date:	Thu Oct 30 16:38:39 2003
Author:	jmcd

Update of /home/cvs/samba/source/rpc_server
In directory dp.samba.org:/tmp/cvs-serv5562/rpc_server

Modified Files:
	srv_epmapper_nt.c srv_pipe.c srv_spoolss_nt.c 
Log Message:
First round of merging various UUID structures.

This eliminates RPC_UUID.  It creates the following struct:

struct uuid
{
  uint32 time_low;
  uint16 time_mid;
  uint16 time_hi_and_version;
  uint8  clock_seq[2];
  uint8  node[6];
};
which replaces RPC_UUID and various random struct uuid definitions


and a flat version:
#define UUID_FLAT_SIZE 16
typedef struct uuid_flat
{
	uint8 info[UUID_FLAT_SIZE];
} UUID_FLAT;

which pretty much looks like GUID (which I will start eliminating).

I want us to use the FLAT one only on the wire (perhaps in files, too?), and
I want it to be obvious to the coder that it is the FLAT version.

This leaves a couple of compiler warnings, where GUID isn't completely 
replaced by FLAT_UUID yet...I'll get to those soon.


Revisions:
srv_epmapper_nt.c		1.1 => 1.2
	http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_epmapper_nt.c.diff?r1=1.1&r2=1.2
srv_pipe.c		1.119 => 1.120
	http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_pipe.c.diff?r1=1.119&r2=1.120
srv_spoolss_nt.c		1.410 => 1.411
	http://www.samba.org/cgi-bin/cvsweb/samba/source/rpc_server/srv_spoolss_nt.c.diff?r1=1.410&r2=1.411



More information about the samba-cvs mailing list