3948. [port] solaris: RCVBUFSIZE was too large on Solaris with

--with-tuning=large. [RT #37059]
This commit is contained in:
Mark Andrews 2014-09-09 09:41:55 +10:00
parent c3bb8bb228
commit 52131a8351
2 changed files with 7 additions and 0 deletions

View file

@ -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]

View file

@ -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 */