blob: e59d933b2f0c8f4a0e4b60c98a2938a36e5cef9b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
namespace NBus {
namespace NTest {
bool IsFixedPortTestAllowed();
// Must not be in range OS uses for bind on random port.
const unsigned FixedPort = 4927;
}
}
|