| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1/cwd/usr/include/dovecot/ |
Upload File : |
#ifndef AUTH_FIELDS_H
#define AUTH_FIELDS_H
struct auth_request;
enum auth_field_flags {
/* This field is internal to auth process and won't be sent to client */
AUTH_FIELD_FLAG_HIDDEN = 0x01,
/* Changed since last snapshot. Set/cleared automatically. */
AUTH_FIELD_FLAG_CHANGED = 0x02
};
struct auth_field {
const char *key, *value;
enum auth_field_flags flags;
};
ARRAY_DEFINE_TYPE(auth_field, struct auth_field);
struct auth_fields *auth_fields_init(pool_t pool);
void auth_fields_add(struct auth_fields *fields,
const char *key, const char *value,
enum auth_field_flags flags) ATTR_NULL(3);
void auth_fields_reset(struct auth_fields *fields);
void auth_fields_remove(struct auth_fields *fields, const char *key);
const char *auth_fields_find(struct auth_fields *fields, const char *key);
bool auth_fields_exists(struct auth_fields *fields, const char *key);
int auth_fields_import_args(struct auth_fields *fields,
const char *const *args,
enum auth_field_flags flags);
int auth_fields_import_prefixed(struct auth_fields *fields, const char *prefix,
const char *str, enum auth_field_flags flags);
const ARRAY_TYPE(auth_field) *auth_fields_export(struct auth_fields *fields);
/* Append fields where (flag & flags_mask) == flags_result. */
void auth_fields_append(struct auth_fields *fields, string_t *dest,
enum auth_field_flags flags_mask,
enum auth_field_flags flags_result,
bool prefix_with_tab);
bool auth_fields_is_empty(struct auth_fields *fields);
/* Remember the current fields. */
void auth_fields_snapshot(struct auth_fields *fields);
/* Rollback to previous snapshot, or clear the fields if there isn't any. */
void auth_fields_rollback(struct auth_fields *fields);
#endif