Let's take a look at the source code:
https://fossies.org/dox/openvpn-2.6.11/ ... tml#l00696
```
msg(x_cs_info_level, "%s %s [%s]: %s (fd=" SOCKET_PRINTF ",code=%d)", description,
sock ? proto2ascii(sock->info.proto, sock->info.af, true) : "",
extended_msg, openvpn_strerror(my_errno, crt_error, &gc),
sock ? sock->sd : -1, my_errno);
```
You can see that the socket your client is trying to reach, does not exist or it's unreachable.
I think that's why sometimes you see this line.
https://fossies.org/dox/openvpn-2.6.11/ ... tml#l00696
```
msg(x_cs_info_level, "%s %s [%s]: %s (fd=" SOCKET_PRINTF ",code=%d)", description,
sock ? proto2ascii(sock->info.proto, sock->info.af, true) : "",
extended_msg, openvpn_strerror(my_errno, crt_error, &gc),
sock ? sock->sd : -1, my_errno);
```
You can see that the socket your client is trying to reach, does not exist or it's unreachable.
I think that's why sometimes you see this line.
Statistics: Posted by paulchery21 — Mon Jul 01, 2024 10:08 pm