#ifndef AUTH_SERVER_CONNECTION_H
#define AUTH_SERVER_CONNECTION_H
struct auth_server_connection {
int fd;
unsigned int server_pid;
unsigned int connect_uid;
char *cookie;
/* id => request */
};
struct auth_server_connection *
const char *reason);
/* Queues a new request. Must not be called if connection is not connected. */
unsigned int
struct auth_client_request *request);
unsigned int id);
#endif