auth-fields.h revision 32e0da4449754351bcff1e7c3fd1262fc26d4973
#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
};
struct auth_field {
enum auth_field_flags flags;
};
enum auth_field_flags flags);
bool include_hidden);
#endif