Begin to work on a pop reimplementation, using jobs and the event loop
[apps/madmutt.git] / lib-mx / pop-new.c
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  */
17 /*
18  *  Copyright © 2007 Pierre Habouzit
19  *  Copyright © 2000-2002 Vsevolod Volkov <vvv@mutt.org.ua>
20  */
21
22 #include <lib-sys/evtloop.h>
23 #include "pop.h"
24
25 typedef struct pop_data_t {
26     int refcnt;
27     job_t *w;
28 } pop_data_t;
29 DO_INIT(pop_data_t, pop_data);
30 DO_WIPE(pop_data_t, pop_data);
31 DO_REFCNT(pop_data_t, pop_data);
32 DO_ARRAY_TYPE(pop_data_t, pop_data);
33 DO_ARRAY_FUNCS(pop_data_t, pop_data, pop_data_delete);
34
35 static pop_data_array conns;
36
37 static __init void pop_initialize(void)
38 {
39     pop_data_array_init(&conns);
40 }
41 static __fini void pop_shutdown(void)
42 {
43     pop_data_array_wipe(&conns);
44 }
45
46 static int pop_setup(job_t *w, void *cfg)
47 {
48     return 0;
49 }
50
51 static void pop_finalize(job_t *w, el_status reason)
52 {
53 }
54
55 static machine_t const pop_machine = {
56     .name     = "POP3",
57     .setup    = &pop_setup,
58     .finalize = &pop_finalize,
59 };
60
61 mx_t const pop_mx_ng = {
62     M_POP,
63     0,
64     NULL,
65     NULL,
66     NULL,
67     NULL,
68     NULL,
69     NULL,
70     NULL,
71     NULL,
72     NULL,
73     NULL,
74     NULL,
75 };