port_t
系统提供的原生端口类型。在Linux下,它是 in_port_t
,在Windows下,它是USHORT
。在物理内存中都占用2字节。
#ifdef __linux__
using port_t = in_port_t;
#elif _WIN32
using port_t = USHORT;
#endif
系统提供的原生端口类型。在Linux下,它是 in_port_t
,在Windows下,它是USHORT
。在物理内存中都占用2字节。
#ifdef __linux__
using port_t = in_port_t;
#elif _WIN32
using port_t = USHORT;
#endif