From f1a5cfb867f8bbd1f5bbb9cff7ca6c84dd7594cf Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Fri, 25 Mar 2005 22:51:52 +0000 Subject: Introduce a update_description wizard widget which can update a textbox description from a select drop down box. --- usr/local/www/system_advanced.php | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/usr/local/www/system_advanced.php b/usr/local/www/system_advanced.php index 428f8b0..8405d01 100755 --- a/usr/local/www/system_advanced.php +++ b/usr/local/www/system_advanced.php @@ -216,6 +216,17 @@ function enable_altpkgconfigurl(enable_over) { } } +var descs=new Array(5); +descs[0]="as the name says, it's the normal optimization algorithm"; +descs[1]="used for high latency links, such as satellite links. Expires idle connections later than default"; +descs[2]="expires idle connections quicker. more efficient use of CPU and memory but can drop legitimate connections"; +descs[3]="tries to avoid dropping any legitimate connections at the expense of increased memory usage and CPU utilization."; + +function update_description(itemnum) { + document.forms[0].info.value=descs[itemnum]; + +} + // --> @@ -444,14 +455,20 @@ function enable_altpkgconfigurl(enable_over) { Firewall Optimization Options - + + +
Select which type of state table optimization your would like to use + Disable Firewall -- cgit v1.1