| home | layout | structure | qd | hexdump |
          File : queue.dat
 Queue Version : 5.01
          Size : 7168 bytes
    F@H Client : FAH502-Linux.exe

Index X - z224

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 "z224\[36\]" qd.c
                char    z224[36];

./qd -q queue.dat -d | grep 224
   224: 00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00   # Index 3
   224: 00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00   # Index 4
   224: 00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00   # Index 5
   224: 00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00   # Index 6
   224: 00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00   # Index 7
   224: 00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00   # Index 8
   224: 00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00   # Index 9
   224: 00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00   # Index 0
   224: 00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00   # Index 1
   224: 00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00   # Index 2

hexdump -Cv -s 232 -n 36 queue.dat    # Index 0
000000e8  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000000f8  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000108  00 00 00 00                                       |....|
0000010c

hexdump -Cv -s 944 -n 36 queue.dat    # Index 1
000003b0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000003c0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000003d0  00 00 00 00                                       |....|
000003d4

hexdump -Cv -s 1656 -n 36 queue.dat   # Index 2
00000678  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000688  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000698  00 00 00 00                                       |....|
0000069c

hexdump -Cv -s 2368 -n 36 queue.dat   # Index 3
00000940  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000950  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000960  00 00 00 00                                       |....|
00000964

hexdump -Cv -s 3080 -n 36 queue.dat   # Index 4
00000c08  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000c18  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000c28  00 00 00 00                                       |....|
00000c2c

hexdump -Cv -s 3792 -n 36 queue.dat   # Index 5
00000ed0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000ee0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000ef0  00 00 00 00                                       |....|
00000ef4

hexdump -Cv -s 4504 -n 36 queue.dat   # Index 6
00001198  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000011a8  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000011b8  00 00 00 00                                       |....|
000011bc

hexdump -Cv -s 5216 -n 36 queue.dat   # Index 7
00001460  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00001470  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00001480  00 00 00 00                                       |....|
00001484

hexdump -Cv -s 5928 -n 36 queue.dat   # Index 8
00001728  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00001738  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00001748  00 00 00 00                                       |....|
0000174c

hexdump -Cv -s 6640 -n 36 queue.dat   # Index 9
000019f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00001a00  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00001a10  00 00 00 00                                       |....|
00001a14