|
_ifconfig_getnode()
Get the hardware address on Unix by running ifconfig. |
source code
|
|
|
_ipconfig_getnode()
Get the hardware address on Windows by running ipconfig.exe. |
source code
|
|
|
|
|
_unixdll_getnode()
Get the hardware address on Unix using ctypes. |
source code
|
|
|
_windll_getnode()
Get the hardware address on Windows using ctypes. |
source code
|
|
|
_random_getnode()
Get a random node ID, with eighth bit set as suggested by RFC
4122. |
source code
|
|
|
|
|
uuid1(node=' frontend ' ,
clock_seq=' frontend ' )
Generate a UUID from a host ID, sequence number, and the current
time. |
source code
|
|
|
uuid3(namespace,
name)
Generate a UUID from the MD5 hash of a namespace UUID and a
name. |
source code
|
|
|
|
|
uuid5(namespace,
name)
Generate a UUID from the SHA-1 hash of a namespace UUID and a
name. |
source code
|
|
|
_uuid_generate_time = ' frontend '
|
|
_uuid_generate_random = ' frontend '
|
|
_buffer = ctypes.create_string_buffer(16)
|
|
lib = ' frontend '
|
|
_UuidCreate = ' frontend '
|
|
_node = ' frontend '
|
|
NAMESPACE_DNS = UUID('6ba7b810-9dad-11d1-80b4-00c04fd430c8')
|
|
NAMESPACE_URL = UUID('6ba7b811-9dad-11d1-80b4-00c04fd430c8')
|
|
NAMESPACE_OID = UUID('6ba7b812-9dad-11d1-80b4-00c04fd430c8')
|
|
NAMESPACE_X500 = UUID('6ba7b814-9dad-11d1-80b4-00c04fd430c8')
|
|
RESERVED_FUTURE = ' reserved for future definition '
|
|
RESERVED_MICROSOFT = ' reserved for Microsoft compatibility '
|
|
RESERVED_NCS = ' reserved for NCS compatibility '
|
|
RFC_4122 = ' specified in RFC 4122 '
|
|
libname = ' c '
|