Andreas Krennmair:
[apps/madmutt.git] / mutt_sasl.h
1 /*
2  * Copyright (C) 2000-5 Brendan Cully <brendan@kublai.com>
3  * 
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  * 
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  * 
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 /* common SASL helper routines */
20
21 #ifndef _MUTT_SASL_H_
22 #define _MUTT_SASL_H_ 1
23
24 #ifdef USE_SASL2
25 #include <sasl/sasl.h>
26 #else
27 #include <sasl.h>
28 #endif
29
30 #include "mutt_socket.h"
31
32 int mutt_sasl_client_new (CONNECTION *, sasl_conn_t **);
33 sasl_callback_t *mutt_sasl_get_callbacks (ACCOUNT *);
34 int mutt_sasl_interact (sasl_interact_t *);
35 void mutt_sasl_setup_conn (CONNECTION *, sasl_conn_t *);
36
37 typedef struct {
38   sasl_conn_t *saslconn;
39   const sasl_ssf_t *ssf;
40   const unsigned int *pbufsize;
41
42   /* read buffer */
43 #ifdef USE_SASL2
44   const char *buf;
45 #else
46   char *buf;
47 #endif
48   unsigned int blen;
49   unsigned int bpos;
50
51   /* underlying socket data */
52   void *sockdata;
53   int (*msasl_open) (CONNECTION * conn);
54   int (*msasl_close) (CONNECTION * conn);
55   int (*msasl_read) (CONNECTION * conn, char *buf, size_t len);
56   int (*msasl_write) (CONNECTION * conn, const char *buf, size_t count);
57 } SASL_DATA;
58
59 #endif /* _MUTT_SASL_H_ */