imapio.h
2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2011 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GNU Mailutils is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. */
#ifndef _MAILUTILS_IMAPIO_H
# define _MAILUTILS_IMAPIO_H
#ifdef __cplusplus
extern "C" {
#endif
# include <mailutils/types.h>
# include <mailutils/datetime.h>
# include <time.h>
#define MU_IMAPIO_CLIENT 0
#define MU_IMAPIO_SERVER 1
int mu_imapio_create (mu_imapio_t *iop, mu_stream_t str, int server);
void mu_imapio_free (mu_imapio_t io);
void mu_imapio_destroy (mu_imapio_t *pio);
int mu_imapio_getline (mu_imapio_t io);
int mu_imapio_set_xscript_level (mu_imapio_t io, int xlev);
int mu_imapio_get_words (mu_imapio_t io, size_t *pwc, char ***pwv);
int mu_imapio_send (mu_imapio_t io, const char *buf, size_t bytes);
int mu_imapio_printf (mu_imapio_t io, const char *fmt, ...);
int mu_imapio_send_literal_string (struct _mu_imapio *io, const char *buffer);
int mu_imapio_send_literal_stream (struct _mu_imapio *io, mu_stream_t stream,
mu_off_t size);
int mu_imapio_send_qstring (struct _mu_imapio *io, const char *buffer);
int mu_imapio_send_qstring_unfold (struct _mu_imapio *io, const char *buffer,
int unfold);
int mu_imapio_send_command_v (struct _mu_imapio *io, const char *tag,
int argc, char const **argv, const char *extra);
int mu_imapio_send_command (struct _mu_imapio *io, const char *tag,
char const *cmd, ...);
int mu_imapio_send_command_e (struct _mu_imapio *io, const char *tag,
char const *cmd, ...);
int mu_imapio_send_flags (struct _mu_imapio *io, int flags);
int mu_imapio_send_time (struct _mu_imapio *io, struct tm *tm,
struct mu_timezone *tz);
int mu_imapio_trace_enable (mu_imapio_t io);
int mu_imapio_trace_disable (mu_imapio_t io);
int mu_imapio_get_trace (mu_imapio_t io);
void mu_imapio_trace_payload (mu_imapio_t io, int val);
int mu_imapio_get_trace_payload (mu_imapio_t io);
int mu_imapio_getbuf (mu_imapio_t io, char **pptr, size_t *psize);
int mu_imapio_reply_string (struct _mu_imapio *io, size_t start, char **pbuf);
int mu_imapio_last_error (struct _mu_imapio *io);
void mu_imapio_clearerr (struct _mu_imapio *io);
int mu_imap_flag_to_attribute (const char *item, int *attr);
int mu_imap_format_flags (mu_stream_t str, int flags);
#ifdef __cplusplus
}
#endif
#endif /* _MAILUTILS_IMAPIO_H */