Home
last modified time | relevance | path

Searched refs:IP_VS_CONN_F_INACTIVE (Results 1 – 6 of 6) sorted by relevance

/linux-4.4.14/include/uapi/linux/
Dip_vs.h90 #define IP_VS_CONN_F_INACTIVE 0x0100 /* not established */ macro
101 IP_VS_CONN_F_INACTIVE | \
108 #define IP_VS_CONN_F_BACKUP_UPD_MASK (IP_VS_CONN_F_INACTIVE | \
/linux-4.4.14/net/netfilter/ipvs/
Dip_vs_proto_sctp.c452 if (!(cp->flags & IP_VS_CONN_F_INACTIVE) && in set_sctp_state()
456 cp->flags |= IP_VS_CONN_F_INACTIVE; in set_sctp_state()
457 } else if ((cp->flags & IP_VS_CONN_F_INACTIVE) && in set_sctp_state()
461 cp->flags &= ~IP_VS_CONN_F_INACTIVE; in set_sctp_state()
Dip_vs_proto_tcp.c542 if (!(cp->flags & IP_VS_CONN_F_INACTIVE) && in set_tcp_state()
546 cp->flags |= IP_VS_CONN_F_INACTIVE; in set_tcp_state()
547 } else if ((cp->flags & IP_VS_CONN_F_INACTIVE) && in set_tcp_state()
551 cp->flags &= ~IP_VS_CONN_F_INACTIVE; in set_tcp_state()
Dip_vs_conn.c587 conn_flags &= ~IP_VS_CONN_F_INACTIVE; in ip_vs_bind_dest()
612 if (!(flags & IP_VS_CONN_F_INACTIVE)) in ip_vs_bind_dest()
707 if (cp->flags & IP_VS_CONN_F_INACTIVE) { in ip_vs_unbind_dest()
Dip_vs_sync.c852 if (!(flags & IP_VS_CONN_F_INACTIVE)) { in ip_vs_proc_conn()
876 if ((cp->flags ^ flags) & IP_VS_CONN_F_INACTIVE && in ip_vs_proc_conn()
878 if (flags & IP_VS_CONN_F_INACTIVE) { in ip_vs_proc_conn()
Dip_vs_ctl.c802 conn_flags |= IP_VS_CONN_F_INACTIVE; in __ip_vs_update_dest()