File : queue.dat Queue Version : 5.01 Size : 7168 bytes F@H Client : FAH502-Linux.exe
assignment info (le): Mon Aug 9 23:36:38 2004; AC1213B0
This time stamp and data word are sent to the client by the assignment server along with the IP address of the work server and other information. The data word is a checksum derived from the IP address and the time stamp. The client sends all three words to the work server as validation of the assignment. These values can be stored in queue.dat in either little-endian or big-endian byte order. It is unknown why it can be either way, but the notation in parentheses, either "(le)" or "(be)" indicates how it actually is stored in this entry.
The three related fields are: Assignment Info Present, Assignment Timestamp and Assignment Info
grep "516 Assignment info" qd.c char aidata[4]; /* 516 Assignment info (LE or BE) */
./qd -q queue.dat | grep assignment assignment info (le): Fri Mar 17 10:15:07 2006; A0F51AFA # Index 3 assignment info (le): Mon Mar 20 14:00:02 2006; A0E85EA7 # Index 4 assignment info (le): Wed Mar 22 00:49:22 2006; A0EA70F7 # Index 5 assignment info (le): Thu Mar 23 09:17:12 2006; A0EC2B7D # Index 6 assignment info (le): Fri Mar 24 20:21:29 2006; A0EE3E4C # Index 7 assignment info (le): Sun Mar 26 04:17:16 2006; A0E18B5D # Index 8 assignment info (le): Thu Apr 13 23:21:46 2006; A0884010 # Index 9 assignment info (le): Sun Apr 30 16:28:22 2006; A0BEBB77 # Index 0 assignment info (le): Fri May 12 05:28:35 2006; A0AF8012 # Index 1 assignment info (le): Wed May 24 00:26:06 2006; A75E68C5 # Index 2
hexdump -C -s 524 -n 4 queue.dat # Index 0 0000020c 77 bb be a0 |w»¾ | 00000210 hexdump -C -s 1236 -n 4 queue.dat # Index 1 000004d4 12 80 af a0 |..¯ | 000004d8 hexdump -C -s 1948 -n 4 queue.dat # Index 2 0000079c c5 68 5e a7 |Åh^§| 000007a0 hexdump -C -s 2660 -n 4 queue.dat # Index 3 00000a64 fa 1a f5 a0 |ú.õ | 00000a68 hexdump -C -s 3372 -n 4 queue.dat # Index 4 00000d2c a7 5e e8 a0 |§^è | 00000d30 hexdump -C -s 4084 -n 4 queue.dat # Index 5 00000ff4 f7 70 ea a0 |÷pê | 00000ff8 hexdump -C -s 4796 -n 4 queue.dat # Index 6 000012bc 7d 2b ec a0 |}+ì | 000012c0 hexdump -C -s 5508 -n 4 queue.dat # Index 7 00001584 4c 3e ee a0 |L>î | 00001588 hexdump -C -s 6220 -n 4 queue.dat # Index 8 0000184c 5d 8b e1 a0 |].á | 00001850 hexdump -C -s 6932 -n 4 queue.dat # Index 9 00001b14 10 40 88 a0 |.@. | 00001b18