BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bencodetorrent.class.php 511B

1234567891011121314151617181920212223
  1. <?php
  2. class BencodeTorrent extends BencodeDecode
  3. {
  4. # Line 172
  5. /**
  6. * Add list of web seeds to a torrent
  7. */
  8. public static function add_web_seeds($Data, $Urls)
  9. {
  10. $r = 'd8:url-listl';
  11. for ($i = 0; $i < count($Urls); $i++) {
  12. $r .= 'l';
  13. for ($j = 0; $j < count($Urls[$i]); $j++) {
  14. $r .= strlen($Urls[$i][$j]).':'.$Urls[$i][$j];
  15. }
  16. $r .= 'e';
  17. }
  18. return $r.'e'.substr($Data, 1);
  19. }
  20. }
  21. # EOF