Home
last modified time | relevance | path

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

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A 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 | \
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A 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 | \
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A 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 | \
/OK3568_Linux_fs/kernel/net/netfilter/ipvs/
H A 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()
H A 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()
H A 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()
H A 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()
H A Dip_vs_ctl.c891 conn_flags |= IP_VS_CONN_F_INACTIVE; in __ip_vs_update_dest()