summaryrefslogtreecommitdiffstats
path: root/src/read_config_yy.y
diff options
context:
space:
mode:
author/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2008-01-05 15:34:30 +0000
committer/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2008-01-05 15:34:30 +0000
commit1c0b4d3721e40586219fb7676e61e6ba19affdd2 (patch)
treede2388c47a825d111501090727ce9a2c7f9acd5a /src/read_config_yy.y
parent18d19a287315b950a6cef6051f8d4e844e37c6ba (diff)
rename class `buffer' to `queue' which is what it really implements
Diffstat (limited to 'src/read_config_yy.y')
-rw-r--r--src/read_config_yy.y10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/read_config_yy.y b/src/read_config_yy.y
index e2bb4c8..9cb304a 100644
--- a/src/read_config_yy.y
+++ b/src/read_config_yy.y
@@ -406,14 +406,14 @@ sync_mode_alarm_line: refreshtime
sync_mode_ftfw_list:
| sync_mode_ftfw_list sync_mode_ftfw_line;
-sync_mode_ftfw_line: resend_buffer_size
+sync_mode_ftfw_line: resend_queue_size
| timeout
| window_size
;
-resend_buffer_size: T_RESEND_BUFFER_SIZE T_NUMBER
+resend_queue_size: T_RESEND_BUFFER_SIZE T_NUMBER
{
- conf.resend_buffer_size = $2;
+ conf.resend_queue_size = $2;
};
window_size: T_WINDOWSIZE T_NUMBER
@@ -685,8 +685,8 @@ init_config(char *filename)
if (CONFIG(refresh) == 0)
CONFIG(refresh) = 60;
- if (CONFIG(resend_buffer_size) == 0)
- CONFIG(resend_buffer_size) = 262144;
+ if (CONFIG(resend_queue_size) == 0)
+ CONFIG(resend_queue_size) = 262144;
/* create empty pool */
if (!STATE(ignore_pool)) {