Now part of the distribution.
Showing
6 changed files
with
33 additions
and
29 deletions
... | @@ -47,9 +47,9 @@ extern int mu_nntp_stls (mu_nntp_t nntp); | ... | @@ -47,9 +47,9 @@ extern int mu_nntp_stls (mu_nntp_t nntp); |
47 | 47 | ||
48 | extern int mu_nntp_mode_reader (mu_nntp_t nntp); | 48 | extern int mu_nntp_mode_reader (mu_nntp_t nntp); |
49 | 49 | ||
50 | /* A list is return with the multi-line answer. It is the responsability of | 50 | /* An iterator is return with the multi-line answer. It is the responsability of |
51 | the caller to call list_destroy() to dispose of the list. */ | 51 | the caller to call iterator_destroy() to dispose of the iterator. */ |
52 | extern int mu_nntp_list_extensions (mu_nntp_t nntp, list_t *plist); | 52 | extern int mu_nntp_list_extensions (mu_nntp_t nntp, iterator_t *iterator); |
53 | 53 | ||
54 | extern int mu_nntp_quit (mu_nntp_t nntp); | 54 | extern int mu_nntp_quit (mu_nntp_t nntp); |
55 | 55 | ||
... | @@ -81,26 +81,26 @@ extern int mu_nntp_date (mu_nntp_t nntp, unsigned int *year, unsigne | ... | @@ -81,26 +81,26 @@ extern int mu_nntp_date (mu_nntp_t nntp, unsigned int *year, unsigne |
81 | extern int mu_nntp_help (mu_nntp_t nntp, stream_t *stream); | 81 | extern int mu_nntp_help (mu_nntp_t nntp, stream_t *stream); |
82 | 82 | ||
83 | 83 | ||
84 | /* A list is return with the multi-line answer. It is the responsability of | 84 | /* An iterator is return with the multi-line answer. It is the responsability of |
85 | the caller to call list_destroy() to dispose of the list. */ | 85 | the caller to call iterator_destroy() to dispose of the iterator. */ |
86 | extern int mu_nntp_newgroups (mu_nntp_t nntp, unsigned int year, unsigned int month, unsigned int day, | 86 | extern int mu_nntp_newgroups (mu_nntp_t nntp, unsigned int year, unsigned int month, unsigned int day, |
87 | unsigned int hour, unsigned int minute, unsigned int second, int is_gmt, list_t *plist); | 87 | unsigned int hour, unsigned int minute, unsigned int second, int is_gmt, iterator_t *iterator); |
88 | /* A list is return with the multi-line answer. It is the responsability of | 88 | /* A iterator is return with the multi-line answer. It is the responsability of |
89 | the caller to call list_destroy() to dispose of the list. */ | 89 | the caller to call iterator_destroy() to dispose of the iterator. */ |
90 | extern int mu_nntp_newnews (mu_nntp_t nntp, const char *wildmat, unsigned int year, unsigned int month, unsigned int day, | 90 | extern int mu_nntp_newnews (mu_nntp_t nntp, const char *wildmat, unsigned int year, unsigned int month, unsigned int day, |
91 | unsigned int hour, unsigned int minute, unsigned int second, int is_gmt, list_t *plist); | 91 | unsigned int hour, unsigned int minute, unsigned int second, int is_gmt, iterator_t *iterator); |
92 | 92 | ||
93 | extern int mu_nntp_post (mu_nntp_t nntp, stream_t stream); | 93 | extern int mu_nntp_post (mu_nntp_t nntp, stream_t stream); |
94 | extern int mu_nntp_ihave (mu_nntp_t nntp, const char *mid, stream_t stream); | 94 | extern int mu_nntp_ihave (mu_nntp_t nntp, const char *mid, stream_t stream); |
95 | 95 | ||
96 | 96 | ||
97 | /* A list is return with the multi-line answer. It is the responsability of | 97 | /* A iterator is return with the multi-line answer. It is the responsability of |
98 | the caller to call list_destroy() to dispose of the list. */ | 98 | the caller to call iterator_destroy() to dispose of the iterator. */ |
99 | extern int mu_nntp_list_active (mu_nntp_t nntp, const char *wildmat, list_t *plist); | 99 | extern int mu_nntp_list_active (mu_nntp_t nntp, const char *wildmat, iterator_t *iterator); |
100 | extern int mu_nntp_list_active_times (mu_nntp_t nntp, const char *wildmat, list_t *plist); | 100 | extern int mu_nntp_list_active_times (mu_nntp_t nntp, const char *wildmat, iterator_t *iterator); |
101 | extern int mu_nntp_list_distributions (mu_nntp_t nntp, const char *wildmat, list_t *plist); | 101 | extern int mu_nntp_list_distributions (mu_nntp_t nntp, const char *wildmat, iterator_t *iterator); |
102 | extern int mu_nntp_list_distrib_pats (mu_nntp_t nntp, list_t *plist); | 102 | extern int mu_nntp_list_distrib_pats (mu_nntp_t nntp, iterator_t *iterator); |
103 | extern int mu_nntp_list_newsgroups (mu_nntp_t nntp, const char *wildmat, list_t *plist); | 103 | extern int mu_nntp_list_newsgroups (mu_nntp_t nntp, const char *wildmat, iterator_t *iterator); |
104 | 104 | ||
105 | 105 | ||
106 | /* Parse the list active response. | 106 | /* Parse the list active response. | ... | ... |
1 | /* GNU Mailutils -- a suite of utilities for electronic mail | 1 | /* GNU Mailutils -- a suite of utilities for electronic mail |
2 | Copyright (C) 1999, 2000, 2001, 2003 Free Software Foundation, Inc. | 2 | Copyright (C) 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. |
3 | 3 | ||
4 | This library is free software; you can redistribute it and/or | 4 | This library is free software; you can redistribute it and/or |
5 | modify it under the terms of the GNU Lesser General Public | 5 | modify it under the terms of the GNU Lesser General Public |
... | @@ -18,7 +18,7 @@ | ... | @@ -18,7 +18,7 @@ |
18 | #ifndef _MAILUTILS_POP3_H | 18 | #ifndef _MAILUTILS_POP3_H |
19 | #define _MAILUTILS_POP3_H | 19 | #define _MAILUTILS_POP3_H |
20 | 20 | ||
21 | #include <mailutils/list.h> | 21 | #include <mailutils/iterator.h> |
22 | #include <mailutils/debug.h> | 22 | #include <mailutils/debug.h> |
23 | #include <mailutils/stream.h> | 23 | #include <mailutils/stream.h> |
24 | 24 | ||
... | @@ -47,18 +47,18 @@ extern int mu_pop3_apop (mu_pop3_t pop3, const char *name, const char * | ... | @@ -47,18 +47,18 @@ extern int mu_pop3_apop (mu_pop3_t pop3, const char *name, const char * |
47 | 47 | ||
48 | extern int mu_pop3_stls (mu_pop3_t pop3); | 48 | extern int mu_pop3_stls (mu_pop3_t pop3); |
49 | 49 | ||
50 | /* It is the responsability of the caller to call list_destroy() when done | 50 | /* It is the responsability of the caller to call iterator_destroy() when done |
51 | with the list. The item in the list is of type "const char *", | 51 | with the iterator. The items return by the iterator are of type "const char *", |
52 | no processing is done on the item except the removal of the trailing newline. */ | 52 | no processing is done on the item except the removal of the trailing newline. */ |
53 | extern int mu_pop3_capa (mu_pop3_t pop3, list_t *plist); | 53 | extern int mu_pop3_capa (mu_pop3_t pop3, iterator_t *iterator); |
54 | 54 | ||
55 | extern int mu_pop3_dele (mu_pop3_t pop3, unsigned int mesgno); | 55 | extern int mu_pop3_dele (mu_pop3_t pop3, unsigned int mesgno); |
56 | 56 | ||
57 | extern int mu_pop3_list (mu_pop3_t pop3, unsigned int mesgno, size_t *mesg_octet); | 57 | extern int mu_pop3_list (mu_pop3_t pop3, unsigned int mesgno, size_t *mesg_octet); |
58 | 58 | ||
59 | /* A list is return with the multi-line answer. It is the responsability of | 59 | /* An iterator is return with the multi-line answer. It is the responsability of |
60 | the caller to call list_destroy() to dipose of the list. */ | 60 | the caller to call iterator_destroy() to dispose of the iterator. */ |
61 | extern int mu_pop3_list_all (mu_pop3_t pop3, list_t *plist); | 61 | extern int mu_pop3_list_all (mu_pop3_t pop3, iterator_t *piterator); |
62 | 62 | ||
63 | extern int mu_pop3_noop (mu_pop3_t pop3); | 63 | extern int mu_pop3_noop (mu_pop3_t pop3); |
64 | 64 | ||
... | @@ -81,9 +81,9 @@ extern int mu_pop3_top (mu_pop3_t pop3, unsigned int mesgno, unsigned | ... | @@ -81,9 +81,9 @@ extern int mu_pop3_top (mu_pop3_t pop3, unsigned int mesgno, unsigned |
81 | /* The uidl is malloc and return in puidl, it is the responsability of caller | 81 | /* The uidl is malloc and return in puidl, it is the responsability of caller |
82 | to free() the uild when done. */ | 82 | to free() the uild when done. */ |
83 | extern int mu_pop3_uidl (mu_pop3_t pop3, unsigned int mesgno, char **puidl); | 83 | extern int mu_pop3_uidl (mu_pop3_t pop3, unsigned int mesgno, char **puidl); |
84 | /* A list is return with the multi-line answer. It is the responsability of | 84 | /* An iterator is return with the multi-line answer. It is the responsability of |
85 | the caller to call list_destroy() to dipose of the list. */ | 85 | the caller to call iterator_destroy() to dispose of the iterator. */ |
86 | extern int mu_pop3_uidl_all (mu_pop3_t pop3, list_t *plist); | 86 | extern int mu_pop3_uidl_all (mu_pop3_t pop3, iterator_t *piterator); |
87 | 87 | ||
88 | extern int mu_pop3_user (mu_pop3_t pop3, const char *user); | 88 | extern int mu_pop3_user (mu_pop3_t pop3, const char *user); |
89 | 89 | ... | ... |
... | @@ -150,6 +150,7 @@ struct _mu_nntp | ... | @@ -150,6 +150,7 @@ struct _mu_nntp |
150 | 150 | ||
151 | extern int mu_nntp_debug_cmd (mu_nntp_t); | 151 | extern int mu_nntp_debug_cmd (mu_nntp_t); |
152 | extern int mu_nntp_debug_ack (mu_nntp_t); | 152 | extern int mu_nntp_debug_ack (mu_nntp_t); |
153 | extern int mu_nntp_iterator_create (mu_nntp_t, iterator_t *iterator); | ||
153 | extern int mu_nntp_stream_create (mu_nntp_t nntp, stream_t *pstream); | 154 | extern int mu_nntp_stream_create (mu_nntp_t nntp, stream_t *pstream); |
154 | extern int mu_nntp_carrier_is_ready (stream_t carrier, int flag, int timeout); | 155 | extern int mu_nntp_carrier_is_ready (stream_t carrier, int flag, int timeout); |
155 | extern int mu_nntp_parse_article (mu_nntp_t nntp, int code, unsigned long *pnum, char **mid); | 156 | extern int mu_nntp_parse_article (mu_nntp_t nntp, int code, unsigned long *pnum, char **mid); | ... | ... |
1 | /* GNU Mailutils -- a suite of utilities for electronic mail | 1 | /* GNU Mailutils -- a suite of utilities for electronic mail |
2 | Copyright (C) 1999, 2000, 2001, 2003 Free Software Foundation, Inc. | 2 | Copyright (C) 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. |
3 | 3 | ||
4 | This library is free software; you can redistribute it and/or | 4 | This library is free software; you can redistribute it and/or |
5 | modify it under the terms of the GNU Lesser General Public | 5 | modify it under the terms of the GNU Lesser General Public |
... | @@ -90,6 +90,7 @@ struct _mu_pop3 | ... | @@ -90,6 +90,7 @@ struct _mu_pop3 |
90 | 90 | ||
91 | extern int mu_pop3_debug_cmd (mu_pop3_t); | 91 | extern int mu_pop3_debug_cmd (mu_pop3_t); |
92 | extern int mu_pop3_debug_ack (mu_pop3_t); | 92 | extern int mu_pop3_debug_ack (mu_pop3_t); |
93 | extern int mu_pop3_iterator_create (mu_pop3_t pop3, iterator_t *piterator); | ||
93 | extern int mu_pop3_stream_create (mu_pop3_t pop3, stream_t *pstream); | 94 | extern int mu_pop3_stream_create (mu_pop3_t pop3, stream_t *pstream); |
94 | extern int mu_pop3_carrier_is_ready (stream_t carrier, int flag, int timeout); | 95 | extern int mu_pop3_carrier_is_ready (stream_t carrier, int flag, int timeout); |
95 | 96 | ... | ... |
-
Please register or sign in to post a comment