pptpctrl.h 341 B

1234567891011121314151617181920
  1. /*
  2. * pptpctrl.h
  3. *
  4. * PPTP control function prototypes.
  5. *
  6. * $Id: pptpctrl.h,v 1.2 2011/05/19 00:02:50 quozl Exp $
  7. */
  8. #ifndef _PPTPD_PPTPCTRL_H
  9. #define _PPTPD_PPTPCTRL_H
  10. extern int pptpctrl_debug;
  11. #ifdef VRF
  12. extern char *vrf;
  13. #else
  14. #define vrf_socket(vrf, dom, typ, prot) socket(dom, typ, prot)
  15. #endif
  16. #endif /* !_PPTPD_PPTPCTRL_H */