1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/*
* LibSylph -- E-Mail client library
* Copyright (C) 1999-2005 Hiroyuki Yamamoto
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __NNTP_H__
#define __NNTP_H__
#include "session.h"
#if USE_SSL
# include "ssl.h"
#endif
typedef struct _NNTPSession NNTPSession;
#define NNTP_SESSION(obj) ((NNTPSession *)obj)
struct _NNTPSession
{
Session session;
gchar *group;
gchar *userid;
gchar *passwd;
gboolean auth_failed;
};
#define NN_SUCCESS 0
#define NN_SOCKET 2
#define NN_AUTHFAIL 3
#define NN_PROTOCOL 4
#define NN_SYNTAX 5
#define NN_IOERR 6
#define NN_ERROR 7
#define NN_AUTHREQ 8
#define NN_AUTHCONT 9
#define NNTPBUFSIZE 8192
#if USE_SSL
Session *nntp_session_new (const gchar *server,
gushort port,
gchar *buf,
const gchar *userid,
const gchar *passwd,
SSLType ssl_type);
#else
Session *nntp_session_new (const gchar *server,
gushort port,
gchar *buf,
const gchar *userid,
const gchar *passwd);
#endif
gint nntp_group (NNTPSession *session,
const gchar *group,
gint *num,
gint *first,
gint *last);
gint nntp_get_article (NNTPSession *session,
const gchar *cmd,
gint num,
gchar **msgid);
gint nntp_article (NNTPSession *session,
gint num,
gchar **msgid);
gint nntp_body (NNTPSession *session,
gint num,
gchar **msgid);
gint nntp_head (NNTPSession *session,
gint num,
gchar **msgid);
gint nntp_stat (NNTPSession *session,
gint num,
gchar **msgid);
gint nntp_next (NNTPSession *session,
gint *num,
gchar **msgid);
gint nntp_xover (NNTPSession *session,
gint first,
gint last);
gint nntp_xhdr (NNTPSession *session,
const gchar *header,
gint first,
gint last);
gint nntp_list (NNTPSession *session);
gint nntp_post (NNTPSession *session,
FILE *fp);
gint nntp_newgroups (NNTPSession *session);
gint nntp_newnews (NNTPSession *session);
gint nntp_mode (NNTPSession *session,
gboolean stream);
#endif /* __NNTP_H__ */
|