sm_pf.c 472 B

12345678910111213141516171819202122232425262728293031
  1. /* $Id: sm_pf.c,v 1.2 2005/10/18 19:58:12 dijkstra Exp $ */
  2. #include <stdlib.h>
  3. #include "sylimits.h"
  4. #include "data.h"
  5. #include "error.h"
  6. void
  7. privinit_pf()
  8. {
  9. fatal("pf module not available");
  10. }
  11. void
  12. init_pf(struct stream *st)
  13. {
  14. fatal("pf module not available");
  15. }
  16. void
  17. gets_pf()
  18. {
  19. fatal("pf module not available");
  20. }
  21. int
  22. get_pf(char *symon_buf, int maxlen, struct stream *st)
  23. {
  24. fatal("pf module not available");
  25. /* NOT REACHED */
  26. return 0;
  27. }