Lines Matching defs:ip_vs_service
607 struct ip_vs_service { struct
608 struct list_head s_list; /* for normal service table */
609 struct list_head f_list; /* for fwmark-based service table */
610 atomic_t refcnt; /* reference counter */
611 atomic_t usecnt; /* use counter */
613 u16 af; /* address family */
614 __u16 protocol; /* which protocol (TCP/UDP) */
615 union nf_inet_addr addr; /* IP address for virtual service */
616 __be16 port; /* port number for the service */
617 __u32 fwmark; /* firewall mark of the service */
618 unsigned flags; /* service status flags */
619 unsigned timeout; /* persistent timeout in ticks */
620 __be32 netmask; /* grouping granularity */
621 struct net *net;
623 struct list_head destinations; /* real server d-linked list */
624 __u32 num_dests; /* number of servers */
625 struct ip_vs_stats stats; /* statistics for the service */
626 struct ip_vs_app *inc; /* bind conns to this app inc */
629 struct ip_vs_scheduler *scheduler; /* bound scheduler object */
630 rwlock_t sched_lock; /* lock sched_data */
631 void *sched_data; /* scheduler application data */
634 struct ip_vs_pe *pe;