Lines Matching defs:ip_vs_service
675 struct ip_vs_service { struct
676 struct hlist_node s_list; /* for normal service table */
677 struct hlist_node f_list; /* for fwmark-based service table */
678 atomic_t refcnt; /* reference counter */
680 u16 af; /* address family */
681 __u16 protocol; /* which protocol (TCP/UDP) */
682 union nf_inet_addr addr; /* IP address for virtual service */
683 __be16 port; /* port number for the service */
684 __u32 fwmark; /* firewall mark of the service */
685 unsigned int flags; /* service status flags */
686 unsigned int timeout; /* persistent timeout in ticks */
687 __be32 netmask; /* grouping granularity, mask/plen */
688 struct netns_ipvs *ipvs;
690 struct list_head destinations; /* real server d-linked list */
691 __u32 num_dests; /* number of servers */
692 struct ip_vs_stats stats; /* statistics for the service */
695 struct ip_vs_scheduler __rcu *scheduler; /* bound scheduler object */
696 spinlock_t sched_lock; /* lock sched_data */
697 void *sched_data; /* scheduler application data */
700 struct ip_vs_pe __rcu *pe;
701 int conntrack_afmask;
703 struct rcu_head rcu_head;