1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#ifndef _LIBIPVS_H
#define _LIBIPVS_H
#ifdef HAVE_NET_IP_VS_H
#include <net/ip_vs.h>
#else
#include "ip_vs.h"
#endif
/* ipvs info variable */
extern struct ip_vs_getinfo ipvs_info;
/* init socket and get ipvs info */
extern int ipvs_init(void);
/* get ipvs info separately */
extern int ipvs_getinfo(void);
/* get the version number */
extern unsigned int ipvs_version(void);
/* set command */
extern int ipvs_command(int cmd, struct ip_vs_rule_user *urule);
/* get all the ipvs services */
extern struct ip_vs_get_services *ipvs_get_services(void);
/* get the destination array of the specified service */
extern struct ip_vs_get_dests *ipvs_get_dests(struct ip_vs_service_user *svc);
/* get ipvs service */
extern struct ip_vs_service_user *
ipvs_get_service(__u32 fwmark, __u16 protocol, __u32 vaddr, __u16 vport);
/* get ipvs timeout */
extern struct ip_vs_timeout_user *ipvs_get_timeouts(void);
/* get ipvs daemon information */
extern struct ip_vs_daemon_user *ipvs_get_daemon(void);
/* close the socket */
extern void ipvs_close(void);
extern const char *ipvs_strerror(int err);
#endif /* _LIBIPVS_H */
|