|
|
|
@ -228,7 +228,9 @@ srs_error_t SrsTcpListener::listen()
|
|
|
|
|
return srs_error_new(ERROR_SOCKET_CREATE, "create socket. ip=%s, port=%d", ip.c_str(), port);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef SRS_PERF_SO_KEEPALIVE
|
|
|
|
|
// Detect alive for TCP connection.
|
|
|
|
|
// @see https://github.com/ossrs/srs/issues/1044
|
|
|
|
|
#ifdef SO_KEEPALIVE
|
|
|
|
|
int tcp_keepalive = 1;
|
|
|
|
|
if (setsockopt(_fd, SOL_SOCKET, SO_KEEPALIVE, &tcp_keepalive, sizeof(int)) == -1) {
|
|
|
|
|
return srs_error_new(ERROR_SOCKET_SETKEEPALIVE, "setsockopt SO_KEEPALIVE[%d]error. port=%d", tcp_keepalive, port);
|
|
|
|
|