mirror of
https://github.com/ipxe/ipxe
synced 2025-12-18 02:20:19 +03:00
[settings] Support formatting UUIDs as little-endian GUIDs
The RFC4122 specification defines UUIDs as being in network byte order, but an unfortunately significant amount of (mostly Microsoft) software treats them as having the first three fields in little-endian byte order. In an ideal world, any server-side software that compares UUIDs for equality would perform an endian-insensitive comparison (analogous to comparing strings for equality using a case-insensitive comparison), and would therefore not care about byte order differences. Define a setting type name ":guid" to allow a UUID setting to be formatted in little-endian order, to simplify interoperability with server-side software that expects such a formatting. Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -426,6 +426,7 @@ extern const struct setting_type setting_type_hexhyp __setting_type;
|
||||
extern const struct setting_type setting_type_hexraw __setting_type;
|
||||
extern const struct setting_type setting_type_base64 __setting_type;
|
||||
extern const struct setting_type setting_type_uuid __setting_type;
|
||||
extern const struct setting_type setting_type_guid __setting_type;
|
||||
extern const struct setting_type setting_type_busdevfn __setting_type;
|
||||
extern const struct setting_type setting_type_dnssl __setting_type;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user