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

Index X - Packet Size Limit

P limit: 5241856
This is a packet size limit, used to determine how much memory should be allocated when returning results. Its default size seems to be about five megabytes, but if "large units" are selected, the client will set the value to ten times that size. If the actual results file is bigger than the packet limit, the client will be unable to return it to the server.


grep "704 Packet size" qd.c
                u32     plimit;         /* 704 Packet size limit (as of v5.00) */

./qd -q queue.dat | grep "P limit"
  CS: 171.65.103.100; upload failures: 2; P limit: 52427776   # Index 3
  CS: 171.65.103.100; upload failures: 2; P limit: 52427776   # Index 4
  CS: 171.65.103.100; P limit: 52427776                       # Index 5
  CS: 171.65.103.100; P limit: 52427776                       # Index 6
  CS: 171.65.103.100; P limit: 52427776                       # Index 7
  CS: 171.65.103.100; P limit: 52427776                       # Index 8
  CS: 171.65.103.100; P limit: 52427776                       # Index 9
  CS: 171.65.103.100; P limit: 52427776                       # Index 0
  CS: 171.65.103.100; P limit: 52427776                       # Index 1
  CS: 171.65.103.100; P limit: 52427776                       # Index 2

hexdump -C -s 712 -n 4 queue.dat     # Index 0
000002c8  00 fc 1f 03                                       |.ü..|
000002cc

hexdump -C -s 1424 -n 4 queue.dat    # Index 1
00000590  00 fc 1f 03                                       |.ü..|
00000594

hexdump -C -s 2136 -n 4 queue.dat    # Index 2
00000858  00 fc 1f 03                                       |.ü..|
0000085c

hexdump -C -s 2848 -n 4 queue.dat    # Index 3
00000b20  00 fc 1f 03                                       |.ü..|
00000b24

hexdump -C -s 3560 -n 4 queue.dat    # Index 4
00000de8  00 fc 1f 03                                       |.ü..|
00000dec

hexdump -C -s 4272 -n 4 queue.dat    # Index 5
000010b0  00 fc 1f 03                                       |.ü..|
000010b4

hexdump -C -s 4984 -n 4 queue.dat    # Index 6
00001378  00 fc 1f 03                                       |.ü..|
0000137c

hexdump -C -s 5696 -n 4 queue.dat    # Index 7
00001640  00 fc 1f 03                                       |.ü..|
00001644

hexdump -C -s 6408 -n 4 queue.dat    # Index 8
00001908  00 fc 1f 03                                       |.ü..|
0000190c

hexdump -C -s 7120 -n 4 queue.dat    # Index 9
00001bd0  00 fc 1f 03                                       |.ü..|
00001bd4