add CHANGELOG, icon_full, update gitignore
This commit is contained in:
+2
-2
@@ -120,7 +120,7 @@ def analyze_fill_packet(data, fill_num):
|
||||
as_uint32 = struct.unpack_from("<I", data, off)[0]
|
||||
as_int32 = struct.unpack_from("<i", data, off)[0]
|
||||
as_float32 = struct.unpack_from("<f", data, off)[0]
|
||||
as_ascii = data[off:off+4].decode("ascii", errors=".")
|
||||
as_ascii = data[off:off+4].decode("ascii", errors="replace")
|
||||
print(f" [{off:3d}] uint32={as_uint32:10d} int32={as_int32:10d} float32={as_float32:12.4f} ascii='{as_ascii}'")
|
||||
|
||||
# Zone 128-160 analysieren (zwischen BuySell und TradeID)
|
||||
@@ -130,7 +130,7 @@ def analyze_fill_packet(data, fill_num):
|
||||
as_uint32 = struct.unpack_from("<I", data, off)[0]
|
||||
as_int32 = struct.unpack_from("<i", data, off)[0]
|
||||
as_float32 = struct.unpack_from("<f", data, off)[0]
|
||||
as_ascii = data[off:off+4].decode("ascii", errors=".")
|
||||
as_ascii = data[off:off+4].decode("ascii", errors="replace")
|
||||
label = ""
|
||||
if off == 128: label = " ← BuySell (bestätigt)"
|
||||
if off == 144: label = " ← DateTime (bestätigt)"
|
||||
|
||||
Reference in New Issue
Block a user