--- parser3/src/include/pa_sapi.h 2004/02/12 06:46:31 1.25 +++ parser3/src/include/pa_sapi.h 2005/08/09 08:14:50 1.27 @@ -1,14 +1,14 @@ /** @file Parser: web server api interface object decl. - Copyright (c) 2001-2004 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2005 ArtLebedev Group (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ #ifndef PA_SAPI_H #define PA_SAPI_H -static const char * const IDENT_SAPI_H="$Date: 2004/02/12 06:46:31 $"; +static const char * const IDENT_SAPI_H="$Date: 2005/08/09 08:14:50 $"; // includes @@ -39,7 +39,7 @@ struct SAPI { /// send collected header attributes to client static void send_header(SAPI_Info& info); /// output body bytes - static void send_body(SAPI_Info& info, const void *buf, size_t size); + static size_t send_body(SAPI_Info& info, const void *buf, size_t size); }; #endif