dict-connection.h (dovecot-2.3.16) | : | dict-connection.h (dovecot-2.3.17) | ||
---|---|---|---|---|
skipping to change at line 19 | skipping to change at line 19 | |||
struct dict_connection *conn; | struct dict_connection *conn; | |||
struct dict_transaction_context *ctx; | struct dict_transaction_context *ctx; | |||
}; | }; | |||
struct dict_connection { | struct dict_connection { | |||
struct connection conn; | struct connection conn; | |||
struct dict_connection *prev, *next; | struct dict_connection *prev, *next; | |||
struct dict_server *server; | struct dict_server *server; | |||
int refcount; | int refcount; | |||
char *username; | ||||
char *name; | char *name; | |||
struct dict *dict; | struct dict *dict; | |||
enum dict_data_type value_type; | enum dict_data_type value_type; | |||
struct timeout *to_unref; | struct timeout *to_unref; | |||
/* There are only a few transactions per client, so keeping them in | /* There are only a few transactions per client, so keeping them in | |||
array is fast enough */ | array is fast enough */ | |||
ARRAY(struct dict_connection_transaction) transactions; | ARRAY(struct dict_connection_transaction) transactions; | |||
ARRAY(struct dict_connection_cmd *) cmds; | ARRAY(struct dict_connection_cmd *) cmds; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 0 lines changed or added |