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

Index X - Server Port

server: 171.64.122.117:8080
This is the IP and port address of the data server from which the work unit was downloaded. It is also the address to which the unit must eventually be uploaded if it is still active.

The Server IP for Folding@Home clients before v3.0 the value was stored at 040 bytes from the start of each queue index. Starting at byte 264 of each index is the Server IP for client v3.0 and later. The v3.0 and later clients also store the port number.


grep "268 Server port" qd.c
                u32     port;           /* 268 Server port number */

./qd -q queue.dat | grep server
  server: 171.65.103.158:8080; project: 1808   # Index 3
  server: 171.64.122.138:8080; project: 763    # Index 4
  server: 171.64.122.138:8080; project: 770    # Index 5
  server: 171.64.122.138:8080; project: 770    # Index 6
  server: 171.64.122.138:8080; project: 769    # Index 7
  server: 171.64.122.142:8080; project: 2401   # Index 8
  server: 171.64.122.133:8080; project: 1163   # Index 9
  server: 171.64.122.142:8080; project: 2401   # Index 0
  server: 171.64.122.142:8080; project: 2401   # Index 1
  server: 171.65.103.68:8080; project: 1489    # Index 2

hexdump -C -s 276 -n 4 queue.dat    # Index 0
00000114  90 1f 00 00                                       |....|
00000118

hexdump -C -s 988 -n 4 queue.dat    # Index 1
000003dc  90 1f 00 00                                       |....|
000003e0

hexdump -C -s 1700 -n 4 queue.dat   # Index 2
000006a4  90 1f 00 00                                       |....|
000006a8

hexdump -C -s 2412 -n 4 queue.dat   # Index 3
0000096c  90 1f 00 00                                       |....|
00000970

hexdump -C -s 3124 -n 4 queue.dat   # Index 4
00000c34  90 1f 00 00                                       |....|
00000c38

hexdump -C -s 3836 -n 4 queue.dat   # Index 5
00000efc  90 1f 00 00                                       |....|
00000f00

hexdump -C -s 4548 -n 4 queue.dat   # Index 6
000011c4  90 1f 00 00                                       |....|
000011c8

hexdump -C -s 5260 -n 4 queue.dat   # Index 7
0000148c  90 1f 00 00                                       |....|
00001490

hexdump -C -s 5972 -n 4 queue.dat   # Index 8
00001754  90 1f 00 00                                       |....|
00001758

hexdump -C -s 6684 -n 4 queue.dat   # Index 9
00001a1c  90 1f 00 00                                       |....|
00001a20