comparison src/protocol.h @ 197:24d4cd032da5 noffle

[svn] * AUTHORS,INSTALL,NEWS,README,TODO,docs/NOTES,src/client.c,src/protocol.c, src/protocol.h,src/server.c: Merge with latest 1.0 branch. I do not intend to do any further merges from the 1.0 branch; future changes to 1.0 should be carried over by hand if necessary. * src/configfile.c,src/content.c,src/control.c,src/database.c, src/dynamicstring.c,src/fetch.c,src/filter.c,src/group.c, src/itemlist.c,src/lock.c,src/outgoing.c,src/over.c,src/post.c, src/pseudo.c,src/request.c,src/util.c: Minor includes rearrangement.
author bears
date Wed, 31 Oct 2001 11:44:53 +0000
parents 166008a80f03
children 5eece4dfd945
comparison
equal deleted inserted replaced
196:60a70c16d79c 197:24d4cd032da5
2 protocol.h 2 protocol.h
3 3
4 Functions related with the NNTP protocol which are useful for both 4 Functions related with the NNTP protocol which are useful for both
5 the server and the client. 5 the server and the client.
6 6
7 $Id: protocol.h 306 2001-09-01 15:57:45Z enz $ 7 $Id: protocol.h 316 2001-10-31 11:44:53Z bears $
8 */ 8 */
9 9
10 #ifndef PRT_H 10 #ifndef PRT_H
11 #define PRT_H 11 #define PRT_H
12 12
67 Prt_getLn( Str line, FILE *f, int timeoutSeconds ); 67 Prt_getLn( Str line, FILE *f, int timeoutSeconds );
68 68
69 /* 69 /*
70 Read a text line from server. Returns TRUE if line != ".", removes 70 Read a text line from server. Returns TRUE if line != ".", removes
71 leading '.' otherwise. 71 leading '.' otherwise.
72 If timeoutSeconds < 0, no timeout alarm is used. 72 If timeoutSeconds < 0, no timeout alarm is used.
73 */ 73 */
74 Bool 74 Bool
75 Prt_getTxtLn( Str line, Bool *err, FILE *f, int timeoutSeconds ); 75 Prt_getTxtLn( Str line, Bool *err, FILE *f, int timeoutSeconds );
76 76
77 /* 77 /*