Add setters for TCP keepalive values

This patch adds 3 functions to set the 3 keepalive values TCP_KEEPIDLE, TCP_KEEPCNT
and TCP_KEEPINTVL. The values have to be set after iscsi context creation and are
then configured on the socket on each new connection.
This commit is contained in:
Peter Lieven
2012-10-19 23:40:12 +02:00
parent abd20f3587
commit ad9cd56b2d
7 changed files with 57 additions and 1 deletions

View File

@@ -86,6 +86,9 @@ struct iscsi_context {
int is_connected;
int tcp_user_timeout;
int tcp_keepcnt;
int tcp_keepintvl;
int tcp_keepidle;
int current_phase;
int next_phase;