correction to English
[claws.git] / src / nntp.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 Hiroyuki Yamamoto
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-1307, USA.
18  */
19
20 #ifndef __NNTP_H__
21 #define __NNTP_H__
22
23 #include "socket.h"
24
25 typedef struct _NNTPSockInfo    NNTPSockInfo;
26
27 struct _NNTPSockInfo
28 {
29         SockInfo *sock;
30
31         gchar *userid;
32         gchar *passwd;
33         gboolean auth_failed;
34 };
35
36 #define NN_SUCCESS      0
37 #define NN_SOCKET       2
38 #define NN_AUTHFAIL     3
39 #define NN_PROTOCOL     4
40 #define NN_SYNTAX       5
41 #define NN_IOERR        6
42 #define NN_ERROR        7
43 #define NN_AUTHREQ      8
44 #define NN_AUTHCONT     9
45
46 #define NNTPBUFSIZE     8192
47
48 NNTPSockInfo *nntp_open         (const gchar    *server,
49                                  gushort         port,
50                                  gchar          *buf);
51 NNTPSockInfo *nntp_open_auth    (const gchar    *server,
52                                  gushort         port,
53                                  gchar          *buf,
54                                  const gchar    *userid,
55                                  const gchar    *passwd);
56 void nntp_close                 (NNTPSockInfo   *sock);
57 gint nntp_group                 (NNTPSockInfo   *sock,
58                                  const gchar    *group,
59                                  gint           *num,
60                                  gint           *first,
61                                  gint           *last);
62 gint nntp_get_article           (NNTPSockInfo   *sock,
63                                  const gchar    *cmd,
64                                  gint            num,
65                                  gchar         **msgid);
66 gint nntp_article               (NNTPSockInfo   *sock,
67                                  gint            num,
68                                  gchar         **msgid);
69 gint nntp_body                  (NNTPSockInfo   *sock,
70                                  gint            num,
71                                  gchar         **msgid);
72 gint nntp_head                  (NNTPSockInfo   *sock,
73                                  gint            num,
74                                  gchar         **msgid);
75 gint nntp_stat                  (NNTPSockInfo   *sock,
76                                  gint            num,
77                                  gchar         **msgid);
78 gint nntp_next                  (NNTPSockInfo   *sock,
79                                  gint           *num,
80                                  gchar         **msgid);
81 gint nntp_xover                 (NNTPSockInfo   *sock,
82                                  gint            first,
83                                  gint            last);
84 gint nntp_xhdr                  (NNTPSockInfo   *sock,
85                                  const gchar    *header,
86                                  gint            first,
87                                  gint            last);
88 gint nntp_list                  (NNTPSockInfo   *sock);
89 gint nntp_post                  (NNTPSockInfo   *sock,
90                                  FILE           *fp);
91 gint nntp_newgroups             (NNTPSockInfo   *sock);
92 gint nntp_newnews               (NNTPSockInfo   *sock);
93 gint nntp_mode                  (NNTPSockInfo   *sock,
94                                  gboolean        stream);
95 gint nntp_ok                    (NNTPSockInfo   *sock,
96                                  gchar          *argbuf);
97
98 #endif /* __NNTP_H__ */