Lines Matching defs:ip_vs_service
693 struct ip_vs_service { struct
694 struct hlist_node s_list; /* for normal service table */
695 struct hlist_node f_list; /* for fwmark-based service table */
696 atomic_t refcnt; /* reference counter */
698 u16 af; /* address family */
699 __u16 protocol; /* which protocol (TCP/UDP) */
700 union nf_inet_addr addr; /* IP address for virtual service */
701 __be16 port; /* port number for the service */
702 __u32 fwmark; /* firewall mark of the service */
703 unsigned int flags; /* service status flags */
704 unsigned int timeout; /* persistent timeout in ticks */
705 __be32 netmask; /* grouping granularity, mask/plen */
706 struct netns_ipvs *ipvs;
708 struct list_head destinations; /* real server d-linked list */
709 __u32 num_dests; /* number of servers */
710 struct ip_vs_stats stats; /* statistics for the service */
713 struct ip_vs_scheduler __rcu *scheduler; /* bound scheduler object */
714 spinlock_t sched_lock; /* lock sched_data */
715 void *sched_data; /* scheduler application data */
718 struct ip_vs_pe __rcu *pe;
719 int conntrack_afmask;
721 struct rcu_head rcu_head;