auth-client-private.h revision 0dffa25d211be541ee3c953b23566a1a990789df
#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;
bool debug:1;
};
#endif