Home
last modified time | relevance | path

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

/linux-4.1.27/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.1.27/net/netfilter/ipvs/
Dip_vs_proto_sctp.c443 if (!(cp->flags & IP_VS_CONN_F_INACTIVE) && in set_sctp_state()
447 cp->flags |= IP_VS_CONN_F_INACTIVE; in set_sctp_state()
448 } else if ((cp->flags & IP_VS_CONN_F_INACTIVE) && in set_sctp_state()
452 cp->flags &= ~IP_VS_CONN_F_INACTIVE; in set_sctp_state()
Dip_vs_proto_tcp.c522 if (!(cp->flags & IP_VS_CONN_F_INACTIVE) && in set_tcp_state()
526 cp->flags |= IP_VS_CONN_F_INACTIVE; in set_tcp_state()
527 } else if ((cp->flags & IP_VS_CONN_F_INACTIVE) && in set_tcp_state()
531 cp->flags &= ~IP_VS_CONN_F_INACTIVE; in set_tcp_state()
Dip_vs_conn.c585 conn_flags &= ~IP_VS_CONN_F_INACTIVE; in ip_vs_bind_dest()
610 if (!(flags & IP_VS_CONN_F_INACTIVE)) in ip_vs_bind_dest()
705 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.c805 conn_flags |= IP_VS_CONN_F_INACTIVE; in __ip_vs_update_dest()