~ubuntu-branches/ubuntu/wily/dovecot/wily

« back to all changes in this revision

Viewing changes to src/dict/dict-connection.h

  • Committer: Package Import Robot
  • Author(s): Jaldhar H. Vyas
  • Date: 2013-09-09 00:57:32 UTC
  • mfrom: (1.13.11)
  • mto: (4.8.5 experimental) (1.16.1)
  • mto: This revision was merged to the branch mainline in revision 97.
  • Revision ID: package-import@ubuntu.com-20130909005732-dn1eell8srqbhh0e
Tags: upstream-2.2.5
ImportĀ upstreamĀ versionĀ 2.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
        struct ostream *output;
25
25
 
26
26
        struct dict_iterate_context *iter_ctx;
 
27
        enum dict_iterate_flags iter_flags;
27
28
 
28
29
        /* There are only a few transactions per client, so keeping them in
29
30
           array is fast enough */
30
 
        ARRAY_DEFINE(transactions, struct dict_connection_transaction);
 
31
        ARRAY(struct dict_connection_transaction) transactions;
31
32
};
32
33
 
33
34
struct dict_connection *dict_connection_create(int fd);