/usr/include/dovecot/dsasl-client-private.h is in dovecot-dev 1:2.2.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #ifndef DSASL_CLIENT_PRIVATE_H
#define DSASL_CLIENT_PRIVATE_H
#include "dsasl-client.h"
struct dsasl_client {
pool_t pool;
struct dsasl_client_settings set;
char *password;
const struct dsasl_client_mech *mech;
};
struct dsasl_client_mech {
const char *name;
size_t struct_size;
int (*input)(struct dsasl_client *client,
const unsigned char *input,
unsigned int input_len,
const char **error_r);
int (*output)(struct dsasl_client *client,
const unsigned char **output_r,
unsigned int *output_len_r,
const char **error_r);
void (*free)(struct dsasl_client *client);
};
extern const struct dsasl_client_mech dsasl_client_mech_login;
void dsasl_client_mech_register(const struct dsasl_client_mech *mech);
void dsasl_client_mech_unregister(const struct dsasl_client_mech *mech);
#endif
|