CVS update: samba/source/lib

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/lib
In directory dp.samba.org:/tmp/cvs-serv5562/lib

Modified Files:
	util_sid.c util_uuid.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:
util_sid.c		1.73 => 1.74
	http://www.samba.org/cgi-bin/cvsweb/samba/source/lib/util_sid.c.diff?r1=1.73&r2=1.74
util_uuid.c		1.6 => 1.7
	http://www.samba.org/cgi-bin/cvsweb/samba/source/lib/util_uuid.c.diff?r1=1.6&r2=1.7



More information about the samba-cvs mailing list