| 691 | void formatUUID(std::reverse_iterator<const UInt8 *> src16, UInt8 * dst36); |
| 692 | |
| 693 | inline void writeUUIDText(const UUID & uuid, WriteBuffer & buf) |
| 694 | { |
| 695 | char s[36]; |
| 696 | formatUUID(std::reverse_iterator<const UInt8 *>(reinterpret_cast<const UInt8 *>(&uuid) + 16), reinterpret_cast<UInt8 *>(s)); |
| 697 | buf.write(s, sizeof(s)); |
| 698 | } |
| 699 | |
| 700 | void writeIPv4Text(const IPv4 & ip, WriteBuffer & buf); |
| 701 | void writeIPv6Text(const IPv6 & ip, WriteBuffer & buf); |
no test coverage detected