diff options
| author | Richard Nyberg <rnyberg@murmeldjur.se> | 2009-01-25 13:10:27 +0100 |
|---|---|---|
| committer | Richard Nyberg <rnyberg@murmeldjur.se> | 2009-01-26 22:15:10 +0100 |
| commit | 438881f16f8f67de06cc03eb5cc86c1e82ab4dc0 (patch) | |
| tree | 585c7d9cf0269394aea8ab180d69d0120e5ec839 /misc/btpd_if.c | |
| parent | 50b69abbcdbd5d670d987a9affba41dff57c9525 (diff) | |
| download | btpd-438881f16f8f67de06cc03eb5cc86c1e82ab4dc0.tar.gz btpd-438881f16f8f67de06cc03eb5cc86c1e82ab4dc0.zip | |
Improve the torrent stop and btpd shutdown sequences.
Torrents are now considered stopped and may be restarted even if the stop event haven't been sent the trackers yet. The same holds for the del and add commands. A btpd process in shutdown mode that only have stopped torrents, but is still sending the stop event to trackers, will release resources that would block a new btpd to start. It will the silently exit when it's finished with the trackers. This also makes the timeout parameter for shutdown unnecessary.
Diffstat (limited to 'misc/btpd_if.c')
| -rw-r--r-- | misc/btpd_if.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/misc/btpd_if.c b/misc/btpd_if.c index f01cab9..a62daba 100644 --- a/misc/btpd_if.c +++ b/misc/btpd_if.c @@ -155,13 +155,10 @@ ipc_buf_req_code(struct ipc *ipc, struct iobuf *iob) } enum ipc_err -btpd_die(struct ipc *ipc, int seconds) +btpd_die(struct ipc *ipc) { struct iobuf iob = iobuf_init(16); - if (seconds >= 0) - iobuf_print(&iob, "l3:diei%dee", seconds); - else - iobuf_swrite(&iob, "l3:diee"); + iobuf_swrite(&iob, "l3:diee"); return ipc_buf_req_code(ipc, &iob); } |