pptpmanager.h 475 B

12345678910111213141516171819202122
  1. /*
  2. * pptpmanager.h
  3. *
  4. * Manager function prototype.
  5. */
  6. #ifndef _PPTPD_PPTPSERVER_H
  7. #define _PPTPD_PPTPSERVER_H
  8. void slot_init(int count);
  9. void slot_free();
  10. void slot_set_local(int i, char *ip);
  11. void slot_set_remote(int i, char *ip);
  12. void slot_set_pid(int i, pid_t pid);
  13. int slot_find_by_pid(pid_t pid);
  14. int slot_find_empty();
  15. char *slot_get_local(int i);
  16. char *slot_get_remote(int i);
  17. extern int pptp_manager(int argc, char **argv);
  18. #endif /* !_PPTPD_PPTPSERVER_H */