1
0

RunningTransfer.azureus.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /* $Id: RunningTransfer.azureus.php 2555 2007-02-09 11:19:32Z b4rt $ */
  3. /*******************************************************************************
  4. LICENSE
  5. This program is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License (GPL)
  7. as published by the Free Software Foundation; either version 2
  8. of the License, or (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. To read the license please visit http://www.gnu.org/copyleft/gpl.html
  14. *******************************************************************************/
  15. /**
  16. * class RunningTransferAzureus for azureus-client
  17. */
  18. class RunningTransferAzureus extends RunningTransfer
  19. {
  20. /**
  21. * ctor
  22. *
  23. * @param $psLine
  24. * @return RunningTransferAzureus
  25. */
  26. function RunningTransferAzureus($psLine) {
  27. global $cfg;
  28. $this->processId = 0;
  29. $this->transferFile = "";
  30. $this->filePath = $cfg['transfer_file_path'];
  31. $this->transferowner = $cfg['user'];
  32. $this->args = "";
  33. }
  34. }
  35. ?>