OSSP CVS Repository

ossp - Check-in [4427]
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Patchset]  [Tagging/Branching

Check-in Number: 4427
Date: 2004-Feb-16 10:41:51 (local)
2004-Feb-16 09:41:51 (UTC)
User:rse
Branch:
Comment: Replace remaining (old) UUID_VERSIONX names with UUID_MAKE_VX in the documentation (uuid.pod).
Tickets:
Inspections:
Files:
ossp-pkg/uuid/ChangeLog      1.45 -> 1.46     4 inserted, 0 deleted
ossp-pkg/uuid/uuid.pod      1.15 -> 1.16     6 inserted, 6 deleted

ossp-pkg/uuid/ChangeLog 1.45 -> 1.46

--- ChangeLog    2004/02/16 09:13:58     1.45
+++ ChangeLog    2004/02/16 09:41:51     1.46
@@ -13,6 +13,10 @@
 
   Changes between 0.9.7 and 1.0.0 (13-Feb-2004 to 16-Feb-2004)
 
+   o Replace remaining (old) UUID_VERSIONX names with UUID_MAKE_VX
+     in the documentation (uuid.pod).
+     [Ralf S. Engelschall]
+
    o Resolve namespace conflicts with GCC 3.4 internal pow10() and round()
      functions within uuid_str.c.
      [Ralf S. Engelschall]


ossp-pkg/uuid/uuid.pod 1.15 -> 1.16

--- uuid.pod     2004/02/13 16:01:23     1.15
+++ uuid.pod     2004/02/16 09:41:51     1.16
@@ -302,13 +302,13 @@
 Generates a new UUID in I<uuid> according to I<mode> and optional
 arguments (dependent on I<mode>).
 
-If I<mode> contains the C<UUID_VERSION1> bit, a DCE 1.1 variant UUID of
-version 1 is generated. Then optionally the bit C<UUID_MCASTRND> forces
+If I<mode> contains the C<UUID_MAKE_V1> bit, a DCE 1.1 variant UUID of
+version 1 is generated. Then optionally the bit C<UUID_MAKE_MC> forces
 the use of random multi-cast MAC address instead of the real physical
 MAC address (the default). The UUID is generated out of the 60-bit current
 system time, a 12-bit clock sequence and the 48-bit MAC address.
 
-If I<mode> contains the C<UUID_VERSION3> bit, a DCE 1.1 variant UUID
+If I<mode> contains the C<UUID_MAKE_V3> bit, a DCE 1.1 variant UUID
 of version 3 is generated and two additional C<NUL>-terminated string
 arguments of type "C<const char *>" are expected: first a namespace,
 given as an internally pre-defined id (currently known are ids "C<DNS>",
@@ -317,7 +317,7 @@
 the 128-bit MD5 from the concatenated octet stream of namespace UUID and name
 string.
 
-If I<mode> contains the C<UUID_VERSION4> bit, a DCE 1.1 variant UUID
+If I<mode> contains the C<UUID_MAKE_V4> bit, a DCE 1.1 variant UUID
 of version 4 is generated. The UUID is generated out of 128-bit random
 data.
 
@@ -347,7 +347,7 @@
      char *str = NULL;
 
      uuid_create(&uuid);
-     uuid_make(uuid, UUID_VERSION1);
+     uuid_make(uuid, UUID_MAKE_V1);
      uuid_export(uuid, UUID_FMT_STR, (void **)&str, NULL);
      uuid_destroy(uuid);
      return str;
@@ -363,7 +363,7 @@
      uuid_create(&uuid);
      uuid_create(&uuid_ns);
      uuid_load(uuid_ns, "ns:URL");
-     uuid_make(uuid, UUID_VERSION3, uuid_ns, url);
+     uuid_make(uuid, UUID_MAKE_V3, uuid_ns, url);
      uuid_export(uuid, UUID_FMT_STR, (void **)&str, NULL);
      uuid_destroy(uuid_ns);
      uuid_destroy(uuid);

CVSTrac 2.0.1