File: nntp.h

package info (click to toggle)
trn4 4.0-test77-18
  • links: PTS, VCS
  • area: non-free
  • in suites: trixie
  • size: 4,016 kB
  • sloc: ansic: 48,332; sh: 6,795; tcl: 1,696; yacc: 662; perl: 108; makefile: 26
file content (49 lines) | stat: -rw-r--r-- 1,180 bytes parent folder | download | duplicates (12)
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
/* nntp.h
*/ 
/* This software is copyrighted as detailed in the LICENSE file. */


#ifdef SUPPORT_NNTP

#define FB_BACKGROUND	0
#define FB_OUTPUT	1
#define FB_SILENT	2
#define FB_DISCARD	3

#define MAX_NNTP_ARTICLES   10

#endif

/* DON'T EDIT BELOW THIS LINE OR YOUR CHANGES WILL BE LOST! */

#ifdef SUPPORT_NNTP
int nntp_list _((char*,char*,int));
#endif
void nntp_finish_list _((void));
int nntp_group _((char*,NGDATA*));
int nntp_stat _((ART_NUM));
ART_NUM nntp_stat_id _((char*));
ART_NUM nntp_next_art _((void));
int nntp_header _((ART_NUM));
void nntp_body _((ART_NUM));
long nntp_artsize _((void));
int nntp_finishbody _((int));
int nntp_seekart _((ART_POS));
ART_POS nntp_tellart _((void));
char* nntp_readart _((char*,int));
time_t nntp_time _((void));
int nntp_newgroups _((time_t));
int nntp_artnums _((void));
#if 0
int nntp_rover _((void));
#endif
ART_NUM nntp_find_real_art _((ART_NUM));
char* nntp_artname _((ART_NUM,bool_int));
char* nntp_tmpname _((int));
int nntp_handle_nested_lists _((void));
int nntp_handle_timeout _((void));
void nntp_server_died _((DATASRC*));
#ifdef SUPPORT_XTHREAD
long nntp_readcheck _((void));
long nntp_read _((char*,long));
#endif