X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-sys%2Fevtloop.h;h=c96f0c2585348fe2a0bcb5b4a1a586cbf0064f7a;hp=84f2eb05ff116b773ad284f939a3bd915643c147;hb=f8d1899d44b259a0920a52bd7290f15e39fd0d47;hpb=7489084cbae92559260659c8606eea91d70e8f3b diff --git a/lib-sys/evtloop.h b/lib-sys/evtloop.h index 84f2eb0..c96f0c2 100644 --- a/lib-sys/evtloop.h +++ b/lib-sys/evtloop.h @@ -23,6 +23,7 @@ #include #include +#include typedef enum el_state { EL_LLP_INIT, @@ -55,8 +56,10 @@ typedef enum el_event { typedef struct job_t { int fd; + int ssf; gnutls_session_t session; + gnutls_certificate_credentials_t xcred; el_state state : 2; el_mode mode : 3; @@ -67,14 +70,14 @@ typedef struct job_t { void *ptr; } job_t; DO_INIT(job_t, job); -DO_WIPE(job_t, job); +void job_wipe(job_t *w); DO_NEW(job_t, job); DO_DELETE(job_t, job); typedef struct machine_t { const char *name; __must_check__ int (*setup)(job_t *w, void *); - int (*on_event)(job_t *w, el_event); + __must_check__ int (*on_event)(job_t *w, el_event); void (*finalize)(job_t *w, el_status); } machine_t; @@ -84,8 +87,10 @@ typedef struct machine_t { __must_check__ int el_job_setmode(job_t *w, el_mode); __must_check__ int el_job_release(job_t *j, el_status); __must_check__ int el_job_connect(job_t *w, struct sockaddr *, socklen_t len, - int type, int proto); + int type, int proto, int ssl); +__must_check__ int el_job_starttls(job_t *w); __must_check__ ssize_t el_job_read(job_t *w, buffer_t *buf); +__must_check__ ssize_t el_job_write(job_t *w, buffer_t *buf); static inline job_t *el_job_start(const machine_t *m, void *cfg) { job_t *w = job_new(); @@ -94,5 +99,7 @@ static inline job_t *el_job_start(const machine_t *m, void *cfg) { } int el_dispatch(int timeout); +void el_initialize(void); +void el_shutdown(void); #endif