diff options
author | Warren Baker <warren@decoy.co.za> | 2015-01-09 10:51:27 +0200 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2015-01-12 16:33:06 -0600 |
commit | 324a2387d0a0bde3ee445860964291f7cbb2fc26 (patch) | |
tree | 8bf7b68e61df61b96b2cb9414d5d4079afbc14d9 /etc/inc | |
parent | ad9148aefaa71bfda268780845b6d75d6f7d8d23 (diff) | |
download | pfsense-324a2387d0a0bde3ee445860964291f7cbb2fc26.zip pfsense-324a2387d0a0bde3ee445860964291f7cbb2fc26.tar.gz |
Unbound is compiled with libevent so setting this to always be 4096.
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/unbound.inc | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/etc/inc/unbound.inc b/etc/inc/unbound.inc index 9fe32e4..20ed19b 100644 --- a/etc/inc/unbound.inc +++ b/etc/inc/unbound.inc @@ -81,13 +81,6 @@ function unbound_optimization() { // Size of the RRset cache $optimization['rrset_cache_size'] = "rrset-cache-size: 8m"; - // More outgoing connections per thread otherwise assign a default of 4096 for a single thread - if ($numprocs > 0) { - $or = (1024/$numprocs) - 50; - $optimization['outgoing_range'] = "outgoing-range: {$or}"; - } else - $optimization['outgoing_range'] = "outgoing-range: {4096}"; - /* * Larger socket buffer for busy servers * Check that it is set to 4MB (by default the OS has it configured to 4MB) @@ -313,7 +306,7 @@ msg-cache-size: {$msg_cache_size}m {$optimization['infra_cache_slabs']} {$optimization['key_cache_slabs']} {$optimization['rrset_cache_size']} -{$optimization['outgoing_range']} +outgoing-range: 4096 {$optimization['so_rcvbuf']} {$anchor_file} prefetch: {$prefetch} @@ -682,4 +675,4 @@ function unbound_hosts_generate() { unbound_control("reload"); } -?>
\ No newline at end of file +?> |