Increase the exit timeout from 5 seconds to 10.

Increase the update and exit check interval from .5 seconds to 1.
This commit is contained in:
Josh Elsasser 2006-06-20 06:13:06 +00:00
parent f633c19c03
commit 8194ed1208
1 changed files with 3 additions and 3 deletions

View File

@ -49,13 +49,13 @@
#include "util.h"
/* time in seconds to wait for torrents to stop when exiting */
#define TRACKER_EXIT_TIMEOUT 5
#define TRACKER_EXIT_TIMEOUT 10
/* interval in milliseconds to update the torrent list display */
#define UPDATE_INTERVAL 500
#define UPDATE_INTERVAL 1000
/* interval in milliseconds to check for stopped torrents and update display */
#define EXIT_CHECK_INTERVAL 500
#define EXIT_CHECK_INTERVAL 1000
struct cbdata {
TrBackend *back;