File : queue.dat Queue Version : 5.01 Size : 7168 bytes F@H Client : FAH502-Linux.exe
These fields are present in queue.dat and usually only contain zeros.
Some fields, like z192, z224 and z7152 are most likely reserved for future use. Whereas other fields are mostly likely padding, or sometimes contain unknown values, e.g. z500 and z528.
grep "unknown stuff" qd.c /* There is still sometimes unknown stuff in bytes 500-507 and 528 */
grep "7152 (as of v5.00)" qd.c char z7152[16]; /* 7152 (as of v5.00) ...all zeros after queue conversion... */
./qd -q queue.dat -d | grep 7152 7152: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
hexdump -C -s 7152 -n 16 queue.dat 00001bf0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 00001c00