6ceeeac105b6fcd383f668a0c04d1aa10472c0eb
[apps/madmutt.git] / mutt_socket.h
1 /*
2  * Copyright (C) 1998 Brandon Long <blong@fiction.net>
3  * Copyright (C) 1999-2005 Brendan Cully <brendan@kublai.com>
4  * 
5  *     This program is free software; you can redistribute it and/or modify
6  *     it under the terms of the GNU General Public License as published by
7  *     the Free Software Foundation; either version 2 of the License, or
8  *     (at your option) any later version.
9  * 
10  *     This program is distributed in the hope that it will be useful,
11  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *     GNU General Public License for more details.
14  * 
15  *     You should have received a copy of the GNU General Public License
16  *     along with this program; if not, write to the Free Software
17  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
18  */
19
20 #ifndef _MUTT_SOCKET_H_
21 #define _MUTT_SOCKET_H_ 1
22
23 #include "account.h"
24 #include "lib.h"
25
26 /* logging levels */
27 #define M_SOCK_LOG_CMD  2
28 #define M_SOCK_LOG_HDR  3
29 #define M_SOCK_LOG_FULL 4
30
31 typedef struct _connection {
32   ACCOUNT account;
33   /* security strength factor, in bits */
34   unsigned int ssf;
35   void *data;
36
37   char inbuf[LONG_STRING];
38   int bufpos;
39
40   int fd;
41   int available;
42
43   struct _connection *next;
44
45   void *sockdata;
46   int (*conn_read) (struct _connection * conn, char *buf, size_t len);
47   int (*conn_write) (struct _connection * conn, const char *buf,
48                      size_t count);
49   int (*conn_open) (struct _connection * conn);
50   int (*conn_close) (struct _connection * conn);
51 } CONNECTION;
52
53 int mutt_socket_open (CONNECTION * conn);
54 int mutt_socket_close (CONNECTION * conn);
55 int mutt_socket_read (CONNECTION * conn, char *buf, size_t len);
56 int mutt_socket_readchar (CONNECTION * conn, char *c);
57
58 #define mutt_socket_readln(A,B,C) mutt_socket_readln_d(A,B,C,M_SOCK_LOG_CMD)
59 int mutt_socket_readln_d (char *buf, size_t buflen, CONNECTION * conn,
60                           int dbg);
61 #define mutt_socket_write(A,B) mutt_socket_write_d(A,B,M_SOCK_LOG_CMD);
62 int mutt_socket_write_d (CONNECTION * conn, const char *buf, int dbg);
63
64 /* stupid hack for imap_logout_all */
65 CONNECTION *mutt_socket_head (void);
66 void mutt_socket_free (CONNECTION * conn);
67 CONNECTION *mutt_conn_find (const CONNECTION * start,
68                             const ACCOUNT * account);
69
70 int raw_socket_read (CONNECTION * conn, char *buf, size_t len);
71 int raw_socket_write (CONNECTION * conn, const char *buf, size_t count);
72 int raw_socket_open (CONNECTION * conn);
73 int raw_socket_close (CONNECTION * conn);
74
75 #endif /* _MUTT_SOCKET_H_ */