mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 09:09:59 -04:00
3948. [port] solaris: RCVBUFSIZE was too large on Solaris with
--with-tuning=large. [RT #37059]
This commit is contained in:
parent
c3bb8bb228
commit
52131a8351
2 changed files with 7 additions and 0 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
3948. [port] solaris: RCVBUFSIZE was too large on Solaris with
|
||||
--with-tuning=large. [RT #37059]
|
||||
|
||||
3947. [cleanup] Set the executable bit on libraries when using
|
||||
libtool. [RT #36786]
|
||||
|
||||
|
|
|
|||
|
|
@ -309,7 +309,11 @@ typedef isc_event_t intev_t;
|
|||
* The size to raise the receive buffer to (from BIND 8).
|
||||
*/
|
||||
#ifdef TUNE_LARGE
|
||||
#ifdef sun
|
||||
#define RCVBUFSIZE (1*1024*1024)
|
||||
#else
|
||||
#define RCVBUFSIZE (16*1024*1024)
|
||||
#endif
|
||||
#else
|
||||
#define RCVBUFSIZE (32*1024)
|
||||
#endif /* TUNE_LARGE */
|
||||
|
|
|
|||
Loading…
Reference in a new issue