--- parser3/src/include/pa_sapi.h 2003/11/20 16:34:25 1.24 +++ parser3/src/include/pa_sapi.h 2004/07/26 10:44:21 1.26 @@ -1,14 +1,14 @@ /** @file Parser: web server api interface object decl. - Copyright (c) 2001-2003 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2004 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: 2003/11/20 16:34:25 $"; +static const char * const IDENT_SAPI_H="$Date: 2004/07/26 10:44:21 $"; // 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