Lines Matching defs:ip_vs_service
613 struct ip_vs_service { struct
614 struct hlist_node s_list; /* for normal service table */
615 struct hlist_node f_list; /* for fwmark-based service table */
616 atomic_t refcnt; /* reference counter */
618 u16 af; /* address family */
619 __u16 protocol; /* which protocol (TCP/UDP) */
620 union nf_inet_addr addr; /* IP address for virtual service */
621 __be16 port; /* port number for the service */
622 __u32 fwmark; /* firewall mark of the service */
623 unsigned int flags; /* service status flags */
624 unsigned int timeout; /* persistent timeout in ticks */
625 __be32 netmask; /* grouping granularity, mask/plen */
626 struct netns_ipvs *ipvs;
628 struct list_head destinations; /* real server d-linked list */
629 __u32 num_dests; /* number of servers */
630 struct ip_vs_stats stats; /* statistics for the service */
633 struct ip_vs_scheduler __rcu *scheduler; /* bound scheduler object */
634 spinlock_t sched_lock; /* lock sched_data */
635 void *sched_data; /* scheduler application data */
638 struct ip_vs_pe __rcu *pe;
639 int conntrack_afmask;
641 struct rcu_head rcu_head;