1/* PPTP constants and structs */
2#ifndef _NAT_PPTP_H
3#define _NAT_PPTP_H
4
5/* conntrack private data */
6struct ip_nat_pptp {
7	u_int16_t pns_call_id;		/* NAT'ed PNS call id */
8	u_int16_t pac_call_id;		/* NAT'ed PAC call id */
9};
10
11#endif /* _NAT_PPTP_H */
12