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

« back to all changes in this revision

Viewing changes to src/lib-imap-client/imapc-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:
23
23
 
24
24
void imapc_connection_connect(struct imapc_connection *conn,
25
25
                              imapc_command_callback_t *login_callback,
26
 
                              void *login_context);
 
26
                              void *login_context) ATTR_NULL(2, 3);
27
27
void imapc_connection_disconnect(struct imapc_connection *conn);
28
28
void imapc_connection_abort_commands(struct imapc_connection *conn,
29
29
                                     struct imapc_client_mailbox *only_box,
30
 
                                     bool keep_retriable);
 
30
                                     bool keep_retriable) ATTR_NULL(2);
31
31
void imapc_connection_ioloop_changed(struct imapc_connection *conn);
32
32
void imapc_connection_input_pending(struct imapc_connection *conn);
33
33
 
34
34
struct imapc_command *
35
35
imapc_connection_cmd(struct imapc_connection *conn,
36
 
                     imapc_command_callback_t *callback, void *context);
 
36
                     imapc_command_callback_t *callback, void *context)
 
37
        ATTR_NULL(3);
37
38
 
38
39
void imapc_connection_unselect(struct imapc_client_mailbox *box);
39
40