Turi Create  4.0
get_next_port_number.hpp
1 /* Copyright © 2017 Apple Inc. All rights reserved.
2  *
3  * Use of this source code is governed by a BSD-3-clause license that can
4  * be found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause
5  */
6 #ifndef FAULT_SOCKETS_GET_NEXT_PORT_NUMBER_HPP
7 #define FAULT_SOCKETS_GET_NEXT_PORT_NUMBER_HPP
8 #include <stdint.h>
9 #include <cstdlib>
10 namespace turi {
11 namespace nanosockets {
12 
13 size_t get_next_port_number();
14 
15 } // namespace nanosockets
16 }
17 #endif