A clone of btpd with my configuration changes.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

28 lignes
434 B

  1. #include "btcli.h"
  2. void
  3. usage_start(void)
  4. {
  5. printf(
  6. "Start torrents.\n"
  7. "\n"
  8. "Usage: start torrent\n"
  9. "\n"
  10. );
  11. exit(1);
  12. }
  13. void
  14. cmd_start(int argc, char **argv)
  15. {
  16. struct ipc_torrent t;
  17. if (argc < 2)
  18. usage_start();
  19. btpd_connect();
  20. for (int i = 1; i < argc; i++)
  21. if (torrent_spec(argv[i], &t))
  22. handle_ipc_res(btpd_start(ipc, &t), argv[i]);
  23. }