diff src/client.h @ 180:09ca6eb5c7ff noffle

[svn] * TODO,src/client.c,src/client.h,src/fetch.c,src/fetch.h,src/noffle.c: Improve error checking during fetches. A fetch is now aborted immediately if the connection times out or if an unexpected response arrives. This should fix problems with articles appearing in the wrong group, and possibly other mysterious happenings.
author bears
date Wed, 09 May 2001 12:33:43 +0100
parents 3c71e28c8eef
children f1bacee93ca6
line wrap: on
line diff
--- a/src/client.h	Wed May 09 12:15:31 2001 +0100
+++ b/src/client.h	Wed May 09 12:33:43 2001 +0100
@@ -3,7 +3,7 @@
 
   Noffle acting as client to other NNTP-servers
 
-  $Id: client.h 183 2000-07-25 12:14:54Z bears $
+  $Id: client.h 279 2001-05-09 11:33:43Z bears $
 */
 
 #ifndef CLIENT_H
@@ -62,14 +62,14 @@
 /*
   Retrieve full article text and store it into database.
 */
-void
+Bool
 Client_retrieveArt( const char *msgId );
 
 /*
   Same, but for a list of msgId's (new line after each msgId).
   All ARTICLE commands are sent and then all answers read.
 */
-void
+Bool
 Client_retrieveArtList( const char *list, int *artcnt, int artmax );
 
 /*