mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 23:52:22 +02:00
Added time, size and level setting types. Breaks some settings - I'll add
automatic converter to these settings later. Meanwhile you CVS users can fix your config files yourself :) Time settings allow using "days", "hours", "minutes", "seconds" and "milliseconds" or several of their abbreviations. For example "5d 4h 5msecs". Size settings allow using "gbytes", "mbytes", "kbytes" and "bytes" or their abbrevations. For example "5MB". Level settings are currently handled pretty much the way they were before. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3080 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
9c18cb00e7
commit
bd6fe052bc
35 changed files with 526 additions and 186 deletions
|
|
@ -57,8 +57,8 @@ static void sig_dcc_request(GET_DCC_REC *dcc, const char *nickaddr)
|
|||
|
||||
/* check file size limit, NOTE: it's still possible to send a
|
||||
bogus file size and then just send what ever sized file.. */
|
||||
max_size = settings_get_int("dcc_autoget_max_size");
|
||||
if (max_size > 0 && (uoff_t)max_size*1024 < dcc->size)
|
||||
max_size = settings_get_size("dcc_autoget_max_size");
|
||||
if (max_size > 0 && (uoff_t)max_size < dcc->size)
|
||||
return;
|
||||
|
||||
/* ok. but do we want/need to resume? */
|
||||
|
|
@ -77,7 +77,7 @@ void dcc_autoget_init(void)
|
|||
settings_add_bool("dcc", "dcc_autoget", FALSE);
|
||||
settings_add_bool("dcc", "dcc_autoaccept_lowports", FALSE);
|
||||
settings_add_bool("dcc", "dcc_autoresume", FALSE);
|
||||
settings_add_int("dcc", "dcc_autoget_max_size", 0);
|
||||
settings_add_size("dcc", "dcc_autoget_max_size", 0);
|
||||
settings_add_str("dcc", "dcc_autoget_masks", "");
|
||||
|
||||
signal_add_last("dcc request", (SIGNAL_FUNC) sig_dcc_request);
|
||||
|
|
|
|||
|
|
@ -420,7 +420,7 @@ static int dcc_timeout_func(void)
|
|||
GSList *tmp, *next;
|
||||
time_t now;
|
||||
|
||||
now = time(NULL)-settings_get_int("dcc_timeout");
|
||||
now = time(NULL)-settings_get_time("dcc_timeout")/1000;
|
||||
for (tmp = dcc_conns; tmp != NULL; tmp = next) {
|
||||
DCC_REC *dcc = tmp->data;
|
||||
|
||||
|
|
@ -514,7 +514,7 @@ void irc_dcc_init(void)
|
|||
dcc_timeouttag = g_timeout_add(1000, (GSourceFunc) dcc_timeout_func, NULL);
|
||||
|
||||
settings_add_str("dcc", "dcc_port", "0");
|
||||
settings_add_int("dcc", "dcc_timeout", 300);
|
||||
settings_add_time("dcc", "dcc_timeout", "5min");
|
||||
settings_add_str("dcc", "dcc_own_ip", "");
|
||||
|
||||
signal_add("event connected", (SIGNAL_FUNC) sig_connected);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue