portrange.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: 2016 HAW Hamburg
3  * SPDX-License-Identifier: LGPL-2.1-only
4  */
5 
6 #pragma once
7 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
31 #define IANA_SYSTEM_PORTRANGE_MIN (0U)
32 #define IANA_SYSTEM_PORTRANGE_MAX (1023U)
33 #define IANA_USER_PORTRANGE_MIN (1024U)
34 #define IANA_USER_PORTRANGE_MAX (49151U)
35 #define IANA_DYNAMIC_PORTRANGE_MIN (49152U)
36 #define IANA_DYNAMIC_PORTRANGE_MAX (65535U)
39 #ifdef __cplusplus
40 }
41 #endif
42