![]() |
Project
|
Helper class to find a free port range. More...
#include <FreePortFinder.h>
Public Member Functions | |
FreePortFinder (unsigned short initialPort, unsigned short finalPort, unsigned short step) | |
void | scan () |
Start the scan. | |
bool | testPort (int port) const |
Test one specific port. | |
~FreePortFinder () | |
unsigned short | port () const |
Get the first port in the selected range. | |
unsigned short | range () const |
Get the range size. | |
void | setVerbose (bool b) |
Helper class to find a free port range.
Definition at line 17 of file FreePortFinder.h.
o2::framework::FreePortFinder::FreePortFinder | ( | unsigned short | initialPort, |
unsigned short | finalPort, | ||
unsigned short | step | ||
) |
Helper to find a free port range of size step, starting from initial port and ending to finalPort
Definition at line 24 of file FreePortFinder.cxx.
o2::framework::FreePortFinder::~FreePortFinder | ( | ) |
Definition at line 64 of file FreePortFinder.cxx.
unsigned short o2::framework::FreePortFinder::port | ( | ) | const |
Get the first port in the selected range.
Definition at line 69 of file FreePortFinder.cxx.
unsigned short o2::framework::FreePortFinder::range | ( | ) | const |
Get the range size.
Definition at line 70 of file FreePortFinder.cxx.
void o2::framework::FreePortFinder::scan | ( | ) |
Start the scan.
Definition at line 42 of file FreePortFinder.cxx.
void o2::framework::FreePortFinder::setVerbose | ( | bool | b | ) |
Definition at line 59 of file FreePortFinder.cxx.
bool o2::framework::FreePortFinder::testPort | ( | int | port | ) | const |
Test one specific port.
Definition at line 32 of file FreePortFinder.cxx.