auth-server-connection.h revision 0dffa25d211be541ee3c953b23566a1a990789df
#ifndef AUTH_SERVER_CONNECTION_H
#define AUTH_SERVER_CONNECTION_H
struct auth_server_connection {
struct auth_client *client;
int fd;
unsigned int server_pid;
unsigned int connect_uid;
char *cookie;
/* id => request */
bool version_received:1;
bool handshake_received:1;
bool has_plain_mech:1;
};
struct auth_server_connection *
const char *reason);
unsigned int
struct auth_client_request *request);
#endif