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

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

Modified Files:
        cmd_epmapper.c cmd_lsarpc.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:
cmd_epmapper.c          1.2 => 1.3
        
http://www.samba.org/cgi-bin/cvsweb/samba/source/rpcclient/cmd_epmapper.c.diff?r1=1.2&r2=1.3
cmd_lsarpc.c            1.76 => 1.77
        
http://www.samba.org/cgi-bin/cvsweb/samba/source/rpcclient/cmd_lsarpc.c.diff?r1=1.76&r2=1.77

Reply via email to