A clone of btpd with my configuration changes.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

94 строки
2.9 KiB

  1. btpd 0.8:
  2. ---------
  3. Misc:
  4. - btpd now requires pthreads.
  5. - btpd keeps its logs and other information it needs in its own directory.
  6. $HOME/.btpd is the default location.
  7. - Various changes in btpd options ant btcli use. See '--help'.
  8. - The user chooses where to place content for each torrent.
  9. - Better disk IO performance.
  10. - Configureable disk preallocation to reduce file fragmentation.
  11. - The unchoke algorithm is global instead of per torrent. The number
  12. of peers to upload to is configurable.
  13. - Tracker errors are displayed in 'btcli stat' and most importantly don't
  14. make torrents unload on startup.
  15. - The rates displayed by btcli are now computed in btpd and are averaged
  16. over the last 20 seconds.
  17. - btpd now compares size and mtime of content to see if the resume file is
  18. valid.
  19. Bug fixes:
  20. - Double uninterest messages could be sent to some peers in endgame mode.
  21. - A function was called prematurely which could trigger an assert in rare
  22. cases.
  23. btpd 0.7:
  24. ---------
  25. Bug fixes:
  26. - Some communication stupidities was fixed, resulting in better download
  27. performance.
  28. btpd 0.6:
  29. ---------
  30. Misc:
  31. - Set an upper limit on how much data a peer can request at once.
  32. This protects from running out of memory because of a greedy peer.
  33. - End game is more efficient and uses much less memory.
  34. btpd 0.5:
  35. ---------
  36. Bug fixes:
  37. - The bitfield could be sent too late. This could cause the receiving
  38. peer to close the connection.
  39. btpd 0.4:
  40. ---------
  41. Misc:
  42. - The 0.1 rate limiter is back. It runs at a configurable hz now.
  43. - Added "--bw-hz" option to btpd.
  44. - Multiple have messages can be sent in place of a bitfield.
  45. - If btpd can't write to a peer for 60s, it will be disconnected.
  46. Bug fixes:
  47. - A calculation error made btpd buggy with small torrents.
  48. This caused strange crashes and many reports on bad hashes in the log.
  49. - The bitfield was sent too early. A peer could miss pieces btpd got
  50. while the peer was in handshake.
  51. - Some situations in end game or with bad hashes could cause a crash.
  52. btpd 0.3:
  53. ---------
  54. Misc:
  55. - New download strategy.
  56. - Pipe ten requests instead of five.
  57. - "-d" option added to btpd.
  58. - "--with-warn" option added to configure. The default is now
  59. to compile with warnings off.
  60. Bug fixes:
  61. - It was possible for blocks to remain marked as busy when a peer
  62. choked or was lost, causing a piece download to wait until end game.
  63. - The peer wanted level could get too high during end game.
  64. btpd 0.2:
  65. ---------
  66. Misc:
  67. - A new way to do rate limiting.
  68. - Compact mode is now used when talking to the tracker.
  69. Bug fixes:
  70. - A buffer was too small by four bytes, causing a buffer overflow
  71. on the heap in certain conditions.
  72. - An iteration over a list was unsafe and could cause a crash.
  73. - Unloading a torrent didn't kill peers in handshake for that torrent,
  74. and a crash was possible when the handshake finished.
  75. - The counter for uploaded data was updated too early.
  76. - Fixed illegal operator for test(1) in configure.