mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +00:00
Windows: Prevent tools from clashing with named in system tests
In system tests on Windows tool's local port can sometimes clash with 'named'. On Unix the system is poked for the minimal local port, otherwise is set to 32768 as a sane minimum. For Windows we don't poke but set a hardcoded limit; this change aligns the limit with Unix and changes it to 32768.
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
* The last resort defaults: use all non well known port space
|
||||
*/
|
||||
#ifndef ISC_NET_PORTRANGELOW
|
||||
#define ISC_NET_PORTRANGELOW 1024
|
||||
#define ISC_NET_PORTRANGELOW 32768
|
||||
#endif /* ISC_NET_PORTRANGELOW */
|
||||
#ifndef ISC_NET_PORTRANGEHIGH
|
||||
#define ISC_NET_PORTRANGEHIGH 65535
|
||||
|
Reference in New Issue
Block a user