#ifndef DICT_CONNECTION_H
#define DICT_CONNECTION_H
#include "dict.h"
struct dict_connection_transaction {
unsigned int id;
};
struct dict_connection {
int refcount;
char *username;
char *name;
unsigned int minor_version;
int fd;
/* There are only a few transactions per client, so keeping them in
array is fast enough */
unsigned int async_id_counter;
};
unsigned int dict_connections_current_count(void);
void dict_connections_destroy_all(void);
#endif