2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-04 02:08:21 +00:00

Guid to UUID

This commit is contained in:
2025-03-03 04:42:38 +03:00
parent 8c5a4a0e98
commit 2380baf9ff
15 changed files with 103 additions and 101 deletions

View File

@@ -155,7 +155,7 @@ class DataDeserializer {
DistributedConnection? connection, List<int>? requestSequence) {
var reply = new AsyncReply<IRecord>();
var classId = data.getGuid(offset);
var classId = data.getUUID(offset);
offset += 16;
length -= 16;
@@ -210,7 +210,7 @@ class DataDeserializer {
static AsyncReply enumParser(DC data, int offset, int length,
DistributedConnection? connection, List<int>? requestSequence) {
var classId = data.getGuid(offset);
var classId = data.getUUID(offset);
offset += 16;
var index = data[offset++];