Home
last modified time | relevance | path

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

/linux-6.1.9/include/uapi/linux/
Dip_vs.h91 #define IP_VS_CONN_F_INACTIVE 0x0100 /* not established */ macro
102 IP_VS_CONN_F_INACTIVE | \
109 #define IP_VS_CONN_F_BACKUP_UPD_MASK (IP_VS_CONN_F_INACTIVE | \
/linux-6.1.9/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.c562 if (!(cp->flags & IP_VS_CONN_F_INACTIVE) && in set_tcp_state()
566 cp->flags |= IP_VS_CONN_F_INACTIVE; in set_tcp_state()
567 } else if ((cp->flags & IP_VS_CONN_F_INACTIVE) && in set_tcp_state()
571 cp->flags &= ~IP_VS_CONN_F_INACTIVE; in set_tcp_state()
Dip_vs_conn.c606 conn_flags &= ~IP_VS_CONN_F_INACTIVE; in ip_vs_bind_dest()
631 if (!(flags & IP_VS_CONN_F_INACTIVE)) in ip_vs_bind_dest()
726 if (cp->flags & IP_VS_CONN_F_INACTIVE) { in ip_vs_unbind_dest()
Dip_vs_sync.c856 if (!(flags & IP_VS_CONN_F_INACTIVE)) { in ip_vs_proc_conn()
880 if ((cp->flags ^ flags) & IP_VS_CONN_F_INACTIVE && in ip_vs_proc_conn()
882 if (flags & IP_VS_CONN_F_INACTIVE) { in ip_vs_proc_conn()
Dip_vs_ctl.c892 conn_flags |= IP_VS_CONN_F_INACTIVE; in __ip_vs_update_dest()