One Hat Cyber Team
Your IP :
3.145.78.253
Server IP :
103.133.214.160
Server :
Linux venus.ewebguru.net 4.18.0-553.30.1.el8_10.x86_64 #1 SMP Tue Nov 26 02:30:26 EST 2024 x86_64
Server Software :
Apache/2
PHP Version :
8.1.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
include
/
dovecot
/
sieve
/
View File Name :
sieve-runtime.h
#ifndef SIEVE_RUNTIME_H #define SIEVE_RUNTIME_H #include "sieve-common.h" #include "sieve-execute.h" /* * Runtime environment */ struct sieve_runtime_env { const struct sieve_execute_env *exec_env; struct event *event; /* Interpreter */ struct sieve_interpreter *interp; struct sieve_error_handler *ehandler; /* Executing script */ struct sieve_script *script; /* Executing binary */ struct sieve_binary *sbin; struct sieve_binary_block *sblock; /* Current code */ sieve_size_t pc; const struct sieve_operation *oprtn; /* Tested message */ struct sieve_message_context *msgctx; /* Filter result */ struct sieve_result *result; /* Runtime tracing */ struct sieve_runtime_trace *trace; }; #endif