php_milter.h 564 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef PHP_MILTER_H
  2. #define PHP_MILTER_H
  3. #include "libmilter/mfapi.h"
  4. #define MLFI_NONE 0
  5. #define MLFI_CONNECT 1
  6. #define MLFI_HELO 2
  7. #define MLFI_ENVFROM 3
  8. #define MLFI_ENVRCPT 4
  9. #define MLFI_HEADER 5
  10. #define MLFI_EOH 6
  11. #define MLFI_BODY 7
  12. #define MLFI_EOM 8
  13. #define MLFI_ABORT 9
  14. #define MLFI_CLOSE 10
  15. #define MLFI_INIT 11
  16. #define MG(v) TSRMG(milter_globals_id, zend_milter_globals *, v)
  17. typedef struct {
  18. pthread_t thread;
  19. MUTEX_T receiver;
  20. MUTEX_T sender;
  21. SMFICTX *ctx;
  22. sfsistat retval;
  23. int message;
  24. void **args;
  25. } worker_thread;
  26. #endif