File: routing.h

package info (click to toggle)
pptp-linux 1.10.0-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 640 kB
  • sloc: ansic: 3,689; makefile: 142; perl: 117
file content (11 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#if defined (__SVR4) && defined (__sun) /* Solaris */
#include <netinet/in.h>
#include <net/route.h>
struct rt_msg {
        struct rt_msghdr hdr;
        struct sockaddr_in addrs[RTAX_MAX];
};
#endif /* Solaris */
void routing_init(char *ip);
void routing_start(void);
void routing_end(void);