Actions
Bug #1119
openImplement remaining corrections for OFUUID class (remove "FIXME" comments)
Start date:
2024-04-04
Due date:
% Done:
0%
Estimated time:
Module:
ofstd
Operating System:
Compiler:
Description
The implementation of the OFUUID class still contains a few "FIXME" comments. The remaining corrections should be implemented in order to allow the use in productive environments, e.g. for generating SOP Instance UID values.
Updated by Jörg Riesmeier over 1 year ago
- Related to Feature #362: Unterstützung von "UUID as UID" added
Updated by Marco Eichelberg about 1 year ago
On most operating systems, we could significantly simplify the code because a built-in UUID generation function is available:
- Linux, MacOS, Solaris:
void uuid_generate(uuid_t out);
- Windows:
RPC_STATUS UuidCreate(UUID *Uuid);
- FreeBSD, NetBSD, OpenBSD:
void uuid_create(uuid_t *uuid, uint32_t *status);
Unfortunately, Android seems to have no UUID generation function accessible from C/C++.
Updated by Jörg Riesmeier 12 months ago
- Target version changed from 3.6.9 to 3.7.1+
Actions