A clone of btpd with my configuration changes.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

28 řádky
432 B

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