1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-21 11:16:26 +02:00

Missing colon

This commit is contained in:
Pavel Odintsov 2023-04-02 21:35:13 +01:00
parent 34af34d053
commit 87e9cfc780

View File

@ -2523,7 +2523,7 @@ void start_netflow_collector(std::string netflow_host, unsigned int netflow_port
#ifdef _WIN32
// Windows uses char* as 4rd argument: https://learn.microsoft.com/en-gb/windows/win32/api/winsock/nf-winsock-getsockopt and we need to add explicit cast
// I prefer not to expand this logic to other platforms without testing
auto set_reuse_port_res = setsockopt(sockfd, SOL_SOCKET, SO_REUSEPORT, (char*)&reuse_port_optval, sizeof(reuse_port_optval))
auto set_reuse_port_res = setsockopt(sockfd, SOL_SOCKET, SO_REUSEPORT, (char*)&reuse_port_optval, sizeof(reuse_port_optval));
#else
auto set_reuse_port_res = setsockopt(sockfd, SOL_SOCKET, SO_REUSEPORT, &reuse_port_optval, sizeof(reuse_port_optval));
#endif