Project
Loading...
Searching...
No Matches
FreePortFinder.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11namespace o2
12{
13namespace framework
14{
15
18{
19 public:
22 FreePortFinder(unsigned short initialPort, unsigned short finalPort, unsigned short step);
24 void scan();
26 bool testPort(int port) const;
29 unsigned short port() const;
31 unsigned short range() const;
32 // set verbose mode
33 void setVerbose(bool b);
34
35 private:
36 int mSocket;
37 unsigned short mInitialPort;
38 unsigned short mFinalPort;
39 unsigned short mStep;
40 unsigned short mPort;
41 bool mVerbose = true; // whether scan() reports about progress and final port found
42};
43
44} // namespace framework
45} // namespace o2
Helper class to find a free port range.
bool testPort(int port) const
Test one specific port.
unsigned short range() const
Get the range size.
unsigned short port() const
Get the first port in the selected range.
GLboolean GLboolean GLboolean b
Definition glcorearb.h:1233
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...