Mercurial > noffle
view src/post.h @ 144:8b9366fc1361 noffle
[svn] Added timeout to Prt_getLn to avoid Noffle hanging if the
connection breaks down during a fetch.
author | enz |
---|---|
date | Sat, 23 Sep 2000 11:40:35 +0100 |
parents | 3b4db42990e0 |
children | 1c7303c71f66 |
line wrap: on
line source
/* post.h Take the text of a single article, parse it and add/amend headers as necessary, and add to the local database and/or queue for external posting as appropriate. $Id: post.h 159 2000-06-24 20:47:40Z bears $ */ #ifndef POST_H #define POST_H #if HAVE_CONFIG_H #include <config.h> #endif #include "common.h" /* Register an article for posting. */ Bool Post_open( const char * text ); /* Post the article. */ Bool Post_post( void ); /* Done with article - tidy up. */ void Post_close( void ); #endif