auth-client-private.h revision 9137c55411aa39d41c1e705ddc34d5bd26c65021
#ifndef AUTH_CLIENT_PRIVATE_H
#define AUTH_CLIENT_PRIVATE_H
#include "auth-client.h"
struct auth_client {
char *auth_socket_path;
unsigned int client_pid;
struct auth_server_connection *conn;
void *connect_notify_context;
unsigned int request_id_counter;
unsigned int debug:1;
};
#endif