Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 33617 invoked from network); 4 Aug 2006 06:20:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Aug 2006 06:20:34 -0000 Received: (qmail 78447 invoked by uid 500); 4 Aug 2006 06:20:30 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 78216 invoked by uid 500); 4 Aug 2006 06:20:29 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 78196 invoked by uid 500); 4 Aug 2006 06:20:29 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 78187 invoked by uid 99); 4 Aug 2006 06:20:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Aug 2006 23:20:29 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Aug 2006 23:20:25 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 1850D1A981D; Thu, 3 Aug 2006 23:20:05 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r428639 [2/4] - in /webservices/axis2/trunk/c: guththila/src/ include/ modules/core/clientapi/ modules/core/transport/http/ rampart/src/omxmlsec/ samples/client/dynamic_client/ util/include/ Date: Fri, 04 Aug 2006 06:19:57 -0000 To: axis2-cvs@ws.apache.org From: samisa@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060804062005.1850D1A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Modified: webservices/axis2/trunk/c/include/axis2_flow_container.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_flow_container.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_flow_container.h (original) +++ webservices/axis2/trunk/c/include/axis2_flow_container.h Thu Aug 3 23:19:55 2006 @@ -56,9 +56,9 @@ struct axis2_flow_container_ops { /** Deallocate memory - * @param flow_container pointer to flow container - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + * @param flow_container pointer to flow container + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE */ axis2_status_t (AXIS2_CALL * free)( @@ -67,8 +67,8 @@ /** * Get fault out flow - * @param flow_container pointer to flow container - * @param env pointer to environment struct + * @param flow_container pointer to flow container + * @param env pointer to environment struct * @return in flow */ axis2_flow_t *(AXIS2_CALL * @@ -78,10 +78,10 @@ /** * Set in flow - * @param flow_container pointer to flow container - * @param env pointer to environment struct + * @param flow_container pointer to flow container + * @param env pointer to environment struct * @param inflow pointer to in flow - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE */ axis2_status_t (AXIS2_CALL * set_inflow)( @@ -91,8 +91,8 @@ /** * Get out flow - * @param flow_container pointer to flow container - * @param env pointer to environment struct + * @param flow_container pointer to flow container + * @param env pointer to environment struct * @return out flow */ axis2_flow_t *(AXIS2_CALL * @@ -102,10 +102,10 @@ /** * Set out flow - * @param flow_container pointer to flow container - * @param env pointer to environment struct + * @param flow_container pointer to flow container + * @param env pointer to environment struct * @param outflow pointer to out flow - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE */ axis2_status_t (AXIS2_CALL * set_outflow)( @@ -115,8 +115,8 @@ /** * Get fault in flow - * @param flow_container pointer to flow container - * @param env pointer to environment struct + * @param flow_container pointer to flow container + * @param env pointer to environment struct * @return fault in flow */ axis2_flow_t * (AXIS2_CALL * @@ -126,10 +126,10 @@ /** * set fault in flow - * @param flow_container pointer to flow container - * @param env pointer to environment struct + * @param flow_container pointer to flow container + * @param env pointer to environment struct * @param falut_inflow pointer to falut in flow - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE */ axis2_status_t (AXIS2_CALL * set_fault_inflow)( @@ -138,8 +138,8 @@ axis2_flow_t *falut_inflow); /** * Get fault out flow - * @param flow_container pointer to flow container - * @param env pointer to environment struct + * @param flow_container pointer to flow container + * @param env pointer to environment struct * @return fault out flow */ axis2_flow_t *(AXIS2_CALL * @@ -149,10 +149,10 @@ /** * Set fault out flow - * @param flow_container pointer to flow container - * @param env pointer to environment struct + * @param flow_container pointer to flow container + * @param env pointer to environment struct * @param fault_outflow pointer t ofault out flow - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE */ axis2_status_t (AXIS2_CALL * set_fault_outflow)( Modified: webservices/axis2/trunk/c/include/axis2_http_chunked_stream.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_chunked_stream.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_chunked_stream.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_chunked_stream.h Thu Aug 3 23:19:55 2006 @@ -53,54 +53,54 @@ AXIS2_DECLARE_DATA struct axis2_http_chunked_stream_ops { /** - * @param chunked_stream pointer to chunked stream - * @param env pointer to environment struct - * @param buffer - * @param count - */ + * @param chunked_stream pointer to chunked stream + * @param env pointer to environment struct + * @param buffer + * @param count + */ int (AXIS2_CALL * read)( axis2_http_chunked_stream_t *chunked_stream, const axis2_env_t *env, - void *buffer, - size_t count); + void *buffer, + size_t count); /** - * @param env pointer to environment struct - * @param buffer - * @param count - */ + * @param env pointer to environment struct + * @param buffer + * @param count + */ int (AXIS2_CALL * write)( axis2_http_chunked_stream_t *chunked_stream, const axis2_env_t *env, - const void *buffer, + const void *buffer, size_t count); - + /** - * @param chunked_stream pointer to chunked stream - * @param env pointer to environment struct - */ + * @param chunked_stream pointer to chunked stream + * @param env pointer to environment struct + */ int (AXIS2_CALL * get_current_chunk_size)( axis2_http_chunked_stream_t *chunked_stream, const axis2_env_t *env); /** - * @param chunked_stream pointer to chunked stream - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param chunked_stream pointer to chunked stream + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * write_last_chunk)( axis2_http_chunked_stream_t *chunked_stream, const axis2_env_t *env); /** - * @param chunked_stream pointer to chunked stream - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param chunked_stream pointer to chunked stream + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * free)( axis2_http_chunked_stream_t *chunked_stream, @@ -124,7 +124,7 @@ AXIS2_EXTERN axis2_http_chunked_stream_t * AXIS2_CALL axis2_http_chunked_stream_create( const axis2_env_t *env, - axis2_stream_t* stream); + axis2_stream_t* stream); /********************* Start of function macros ***************************/ Modified: webservices/axis2/trunk/c/include/axis2_http_client.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_client.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_client.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_client.h Thu Aug 3 23:19:55 2006 @@ -54,108 +54,108 @@ AXIS2_DECLARE_DATA struct axis2_http_client_ops { /** - * @param client pointer to client - * @param env pointer to environment struct - * @param request pointer to request - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param client pointer to client + * @param env pointer to environment struct + * @param request pointer to request + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * - send)( + send)( axis2_http_client_t *client, - const axis2_env_t *env, + const axis2_env_t *env, axis2_http_simple_request_t *request); /** - * @param client pointer to client - * @param env pointer to environment struct - */ + * @param client pointer to client + * @param env pointer to environment struct + */ int (AXIS2_CALL * recieve_header)( axis2_http_client_t *client, - const axis2_env_t *env); + const axis2_env_t *env); /** - * @param client pointer to client - * @param env pointer to environment struct - */ + * @param client pointer to client + * @param env pointer to environment struct + */ axis2_http_simple_response_t* (AXIS2_CALL * get_response)( axis2_http_client_t *client, - const axis2_env_t *env); + const axis2_env_t *env); /** - * @param client pointer to client - * @param env pointer to environment struct - * @param url pointer to url - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param client pointer to client + * @param env pointer to environment struct + * @param url pointer to url + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_url)( axis2_http_client_t *client, const axis2_env_t *env, - axis2_url_t *url); + axis2_url_t *url); /** - * @param client pointer to client - * @param env pointer to environment struct - */ + * @param client pointer to client + * @param env pointer to environment struct + */ axis2_url_t* (AXIS2_CALL * get_url)( axis2_http_client_t *client, const axis2_env_t *env); /** - * @param client pointer to client - * @param env pointer to environment struct - * @param timeout_ms - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param client pointer to client + * @param env pointer to environment struct + * @param timeout_ms + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_timeout)( axis2_http_client_t *client, const axis2_env_t *env, - int timeout_ms); + int timeout_ms); /** - * @param client pointer to client - * @param env pointer to environment struct - */ + * @param client pointer to client + * @param env pointer to environment struct + */ int (AXIS2_CALL * get_timeout)( axis2_http_client_t *client, const axis2_env_t *env); /** - * @param client pointer to client - * @param env pointer to environment struct - * @param proxy_host pointer to proxy host - * @param proxy_port - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param client pointer to client + * @param env pointer to environment struct + * @param proxy_host pointer to proxy host + * @param proxy_port + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_proxy)( axis2_http_client_t *client, const axis2_env_t *env, - axis2_char_t *proxy_host, + axis2_char_t *proxy_host, int proxy_port); /** - * @param client pointer to client - * @param env pointer to environment struct - */ + * @param client pointer to client + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_proxy)( axis2_http_client_t *client, const axis2_env_t *env); /** - * @param client pointer to client - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param client pointer to client + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * free)( - axis2_http_client_t *client, + axis2_http_client_t *client, const axis2_env_t *env); }; @@ -175,7 +175,7 @@ AXIS2_EXTERN axis2_http_client_t * AXIS2_CALL axis2_http_client_create ( const axis2_env_t *env, - axis2_url_t *url); + axis2_url_t *url); /** * Free http_client passed as void pointer. This will be @@ -186,8 +186,8 @@ */ axis2_status_t AXIS2_CALL axis2_http_client_free_void_arg ( - void *client, - const axis2_env_t *env); + void *client, + const axis2_env_t *env); /************************** Start of function macros **************************/ Modified: webservices/axis2/trunk/c/include/axis2_http_header.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_header.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_header.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_header.h Thu Aug 3 23:19:55 2006 @@ -52,37 +52,37 @@ AXIS2_DECLARE_DATA struct axis2_http_header_ops { /** - * @param header pointer to header - * @param env pointer to environment struct - */ + * @param header pointer to header + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * to_external_form)( axis2_http_header_t *header, const axis2_env_t *env); /** - * @param header pointer to header - * @param env pointer to environment struct - */ + * @param header pointer to header + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_name)( axis2_http_header_t *header, const axis2_env_t *env); /** - * @param header pointer to header - * @param env pointer to environment struct - */ + * @param header pointer to header + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_value)( axis2_http_header_t *header, const axis2_env_t *env); /** - * @param header pointer to header - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param header pointer to header + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * free)( axis2_http_header_t *header, @@ -117,7 +117,7 @@ AXIS2_EXTERN axis2_http_header_t * AXIS2_CALL AXIS2_CALL axis2_http_header_create_by_str ( const axis2_env_t *env, - const axis2_char_t *str); + const axis2_char_t *str); /************************** Start of function macros **************************/ Modified: webservices/axis2/trunk/c/include/axis2_http_out_transport_info.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_out_transport_info.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_out_transport_info.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_out_transport_info.h Thu Aug 3 23:19:55 2006 @@ -53,10 +53,10 @@ AXIS2_DECLARE_DATA struct axis2_http_out_transport_info_ops { /** - * @param info pointer to info - * @param env pointer to environment struct - * @param content_type pointer to content type - */ + * @param info pointer to info + * @param env pointer to environment struct + * @param content_type pointer to content type + */ int (AXIS2_CALL * set_content_type)( axis2_http_out_transport_info_t *info, @@ -64,11 +64,11 @@ const axis2_char_t *content_type); /** - * @param info pointer to info - * @param env pointer to environment struct - * @param encoding pointer to encoding - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param info pointer to info + * @param env pointer to environment struct + * @param encoding pointer to encoding + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_char_encoding)( axis2_http_out_transport_info_t *info, @@ -76,10 +76,10 @@ const axis2_char_t *encoding); /** - * @param out_transport_info pointer to out transport info - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param out_transport_info pointer to out transport info + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * free)( axis2_http_out_transport_info_t *out_transport_info, Modified: webservices/axis2/trunk/c/include/axis2_http_request_line.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_request_line.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_request_line.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_request_line.h Thu Aug 3 23:19:55 2006 @@ -51,46 +51,46 @@ AXIS2_DECLARE_DATA struct axis2_http_request_line_ops { /** - * @param request_line pointer to request line - * @param env pointer to environment struct - */ + * @param request_line pointer to request line + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * - get_method)( + get_method)( axis2_http_request_line_t *request_line, const axis2_env_t *env); /** - * @param request_line pointer to request line - * @param env pointer to environment struct - */ + * @param request_line pointer to request line + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_http_version)( axis2_http_request_line_t *request_line, const axis2_env_t *env); /** - * @param request_line pointer to request line - * @param env pointer to environment struct - */ + * @param request_line pointer to request line + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_uri)( axis2_http_request_line_t *request_line, const axis2_env_t *env); /** - * @param request_line pointer to request line - * @param env pointer to environment struct - */ + * @param request_line pointer to request line + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * to_string)( axis2_http_request_line_t *request_line, const axis2_env_t *env); /** - * @param request_line pointer to request line - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param request_line pointer to request line + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * free)( axis2_http_request_line_t *request_line, @@ -126,7 +126,7 @@ AXIS2_EXTERN axis2_http_request_line_t* AXIS2_CALL axis2_http_request_line_parse_line( const axis2_env_t *env, - const axis2_char_t *str); + const axis2_char_t *str); /********************* Start of function macros ***************************/ Modified: webservices/axis2/trunk/c/include/axis2_http_response_writer.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_response_writer.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_response_writer.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_response_writer.h Thu Aug 3 23:19:55 2006 @@ -51,68 +51,68 @@ AXIS2_DECLARE_DATA struct axis2_http_response_writer_ops { /** - * @param response_writer pointer to response writer - * @param env pointer to environment struct - */ + * @param response_writer pointer to response writer + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_encoding)( axis2_http_response_writer_t *response_writer, const axis2_env_t *env); /** - * @param response_writer pointer to response writer - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param response_writer pointer to response writer + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * close)( axis2_http_response_writer_t *response_writer, const axis2_env_t *env); /** - * @param response_writer pointer to response writer - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param response_writer pointer to response writer + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * flush)( axis2_http_response_writer_t *response_writer, const axis2_env_t *env); /** - * @param response_writer pointer to response writer - * @param env pointer to environment struct - * @param c - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param response_writer pointer to response writer + * @param env pointer to environment struct + * @param c + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * write_char)( axis2_http_response_writer_t *response_writer, const axis2_env_t *env, - char c); + char c); /** - * @param response_writer pointer to response writer - * @param env pointer to environment struct - * @param buf pointer to buf - * @param offset - * @param len - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param response_writer pointer to response writer + * @param env pointer to environment struct + * @param buf pointer to buf + * @param offset + * @param len + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * write_buf)( axis2_http_response_writer_t *response_writer, const axis2_env_t *env, - char *buf, - int offset, + char *buf, + int offset, axis2_ssize_t len); /** - * @param response_writer pointer to response writer - * @param env pointer to environment struct - * @param str pointer to str - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param response_writer pointer to response writer + * @param env pointer to environment struct + * @param str pointer to str + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * print_str)( axis2_http_response_writer_t *response_writer, @@ -120,23 +120,23 @@ const char *str); /** - * @param response_writer pointer to response writer - * @param env pointer to environment struct - * @param i - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param response_writer pointer to response writer + * @param env pointer to environment struct + * @param i + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * print_int)( axis2_http_response_writer_t *response_writer, const axis2_env_t *env, - int i); + int i); /** - * @param response_writer pointer to response writer - * @param env pointer to environment struct - * @param str pointer to str - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param response_writer pointer to response writer + * @param env pointer to environment struct + * @param str pointer to str + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * println_str)( axis2_http_response_writer_t *response_writer, @@ -144,20 +144,20 @@ const char *str); /** - * @param response_writer pointer to response writer - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param response_writer pointer to response writer + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * println)( axis2_http_response_writer_t *response_writer, const axis2_env_t *env); /** - * @param response_writer pointer to response writer - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param response_writer pointer to response writer + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * free)( axis2_http_response_writer_t *response_writer, @@ -181,7 +181,7 @@ AXIS2_EXTERN axis2_http_response_writer_t * AXIS2_CALL axis2_http_response_writer_create ( const axis2_env_t *env, - axis2_stream_t *stream); + axis2_stream_t *stream); /** * @param env pointer to environment struct @@ -192,7 +192,7 @@ axis2_http_response_writer_create_with_encoding( const axis2_env_t *env, axis2_stream_t *stream, - const axis2_char_t *encoding); + const axis2_char_t *encoding); /************************** Start of function macros **************************/ Modified: webservices/axis2/trunk/c/include/axis2_http_simple_request.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_simple_request.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_simple_request.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_simple_request.h Thu Aug 3 23:19:55 2006 @@ -55,145 +55,145 @@ AXIS2_DECLARE_DATA struct axis2_http_simple_request_ops { /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + */ axis2_http_request_line_t* (AXIS2_CALL * - get_request_line)( - axis2_http_simple_request_t *simple_request, + get_request_line)( + axis2_http_simple_request_t *simple_request, const axis2_env_t *env); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - * @param request_line pointer to request line - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + * @param request_line pointer to request line + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * - set_request_line)( - axis2_http_simple_request_t *simple_request, + set_request_line)( + axis2_http_simple_request_t *simple_request, const axis2_env_t *env, axis2_http_request_line_t *request_line); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - * @param name pointer to name - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + * @param name pointer to name + */ axis2_bool_t (AXIS2_CALL * - contains_header)( + contains_header)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env, const axis2_char_t *name); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + */ axis2_array_list_t* (AXIS2_CALL * get_headers)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - * @param str pointer to str - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + * @param str pointer to str + */ axis2_http_header_t* (AXIS2_CALL * get_first_header)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env, - const axis2_char_t *str); + const axis2_char_t *str); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - * @param str pointer to str - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + * @param str pointer to str + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * remove_headers)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env, - const axis2_char_t *str); + const axis2_char_t *str); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - * @param header pointer to header - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + * @param header pointer to header + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * add_header)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env, - axis2_http_header_t *header); + axis2_http_header_t *header); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + */ const axis2_char_t* (AXIS2_CALL * - get_content_type)( + get_content_type)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + */ const axis2_char_t* (AXIS2_CALL * get_charset)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + */ axis2_ssize_t (AXIS2_CALL * get_content_length)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + */ axis2_stream_t* (AXIS2_CALL * get_body)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - * @param buf double pointer to buf - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + * @param buf double pointer to buf + */ axis2_ssize_t (AXIS2_CALL * get_body_bytes)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env, - char **buf); + char **buf); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - * @param str pointer to str - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + * @param str pointer to str + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_body_string)( axis2_http_simple_request_t *simple_request, const axis2_env_t *env, - axis2_char_t *str); + axis2_char_t *str); /** - * @param simple_request pointer to simple request - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_request pointer to simple request + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * free)( axis2_http_simple_request_t *simple_request, Modified: webservices/axis2/trunk/c/include/axis2_http_simple_response.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_simple_response.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_simple_response.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_simple_response.h Thu Aug 3 23:19:55 2006 @@ -55,62 +55,62 @@ AXIS2_DECLARE_DATA struct axis2_http_simple_response_ops { /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - * @param http_ver pointer to http_ver - * @param status_code pointer to status code - * @param phrase pointer to phrase - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + * @param http_ver pointer to http_ver + * @param status_code pointer to status code + * @param phrase pointer to phrase + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_status_line)( - struct axis2_http_simple_response *simple_response, + struct axis2_http_simple_response *simple_response, const axis2_env_t *env, const axis2_char_t *http_ver, const int status_code, const axis2_char_t *phrase); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_phrase)( axis2_http_simple_response_t *simple_response, const axis2_env_t *env); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + */ int (AXIS2_CALL * get_status_code)( axis2_http_simple_response_t *simple_response, const axis2_env_t *env); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_http_version)( axis2_http_simple_response_t *simple_response, const axis2_env_t *env); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_status_line)( axis2_http_simple_response_t *simple_response, const axis2_env_t *env); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - * @param name pointer to name - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + * @param name pointer to name + */ axis2_bool_t (AXIS2_CALL * contains_header)( axis2_http_simple_response_t *simple_response, @@ -118,19 +118,19 @@ const axis2_char_t *name); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + */ axis2_array_list_t* (AXIS2_CALL * get_headers)( axis2_http_simple_response_t *simple_response, const axis2_env_t *env); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - * @param str pointer to str - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + * @param str pointer to str + */ axis2_http_header_t* (AXIS2_CALL * get_first_header)( axis2_http_simple_response_t *simple_response, @@ -138,11 +138,11 @@ const axis2_char_t *str); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - * @param str pointer to str - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + * @param str pointer to str + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * remove_headers)( axis2_http_simple_response_t *simple_response, @@ -150,11 +150,11 @@ const axis2_char_t *str); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - * @param header pointer to header - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + * @param header pointer to header + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_header)( axis2_http_simple_response_t *simple_response, @@ -162,12 +162,12 @@ axis2_http_header_t* header); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - * @param headers double pointer to headers - * @param array_size - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + * @param headers double pointer to headers + * @param array_size + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_headers)( axis2_http_simple_response_t *simple_response, @@ -176,38 +176,38 @@ axis2_ssize_t array_size); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + */ const axis2_char_t* (AXIS2_CALL * get_charset)( axis2_http_simple_response_t *simple_response, const axis2_env_t *env); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + */ axis2_ssize_t (AXIS2_CALL * get_content_length)( axis2_http_simple_response_t *simple_response, const axis2_env_t *env); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + */ const axis2_char_t* (AXIS2_CALL * get_content_type)( axis2_http_simple_response_t *simple_response, const axis2_env_t *env); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - * @param str pointer to str - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + * @param str pointer to str + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_body_string)( axis2_http_simple_response_t *simple_response, @@ -215,11 +215,11 @@ axis2_char_t *str); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - * @param stream pointer to stream - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + * @param stream pointer to stream + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_body_stream)( axis2_http_simple_response_t *simple_response, @@ -227,19 +227,19 @@ axis2_stream_t *stream); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + */ axis2_stream_t* (AXIS2_CALL * get_body)( axis2_http_simple_response_t *simple_response, const axis2_env_t *env); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - * @param buf double pointer to buf - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + * @param buf double pointer to buf + */ axis2_ssize_t (AXIS2_CALL * get_body_bytes)( axis2_http_simple_response_t *simple_response, @@ -247,10 +247,10 @@ axis2_char_t **buf); /** - * @param simple_response pointer to simple response struct - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param simple_response pointer to simple response struct + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * free)( axis2_http_simple_response_t *simple_response, Modified: webservices/axis2/trunk/c/include/axis2_http_status_line.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_status_line.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_status_line.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_status_line.h Thu Aug 3 23:19:55 2006 @@ -51,55 +51,55 @@ AXIS2_DECLARE_DATA struct axis2_http_status_line_ops { /** - * @param status_line pointer to status line - * @param env pointer to environment struct - */ + * @param status_line pointer to status line + * @param env pointer to environment struct + */ int (AXIS2_CALL * get_status_code)( axis2_http_status_line_t *status_line, const axis2_env_t *env); /** - * @param status_line pointer to status line - * @param env pointer to environment struct - */ + * @param status_line pointer to status line + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_http_version)( axis2_http_status_line_t *status_line, const axis2_env_t *env); /** - * @param status_line pointer to status line - * @param env pointer to environment struct - */ + * @param status_line pointer to status line + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * get_reason_phrase)( axis2_http_status_line_t *status_line, const axis2_env_t *env); /** - * @param status_line pointer to status line - * @param env pointer to environment struct - */ + * @param status_line pointer to status line + * @param env pointer to environment struct + */ axis2_bool_t (AXIS2_CALL * starts_with_http)( axis2_http_status_line_t *status_line, const axis2_env_t *env); /** - * @param status_line pointer to status line - * @param env pointer to environment struct - */ + * @param status_line pointer to status line + * @param env pointer to environment struct + */ axis2_char_t* (AXIS2_CALL * to_string)( axis2_http_status_line_t *status_line, const axis2_env_t *env); /** - * @param status_line pointer to status line - * @param env pointer to environment struct - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param status_line pointer to status line + * @param env pointer to environment struct + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * free)( axis2_http_status_line_t *status_line, Modified: webservices/axis2/trunk/c/include/axis2_http_svr_thread.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_svr_thread.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_svr_thread.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_svr_thread.h Thu Aug 3 23:19:55 2006 @@ -52,56 +52,56 @@ AXIS2_DECLARE_DATA struct axis2_http_svr_thread_ops { /** - * @param svr_thread pointer to server thread - * @param env pointer to environment struct - */ + * @param svr_thread pointer to server thread + * @param env pointer to environment struct + */ axis2_status_t (AXIS2_CALL * run)( axis2_http_svr_thread_t *svr_thread, const axis2_env_t *env); /** - * @param svr_thread pointer to server thread - * @param env pointer to environment struct - */ + * @param svr_thread pointer to server thread + * @param env pointer to environment struct + */ axis2_status_t (AXIS2_CALL * destroy)( axis2_http_svr_thread_t *svr_thread, const axis2_env_t *env); /** - * @param svr_thread pointer to server thread - * @param env pointer to environment struct - */ + * @param svr_thread pointer to server thread + * @param env pointer to environment struct + */ int (AXIS2_CALL * get_local_port)( axis2_http_svr_thread_t *svr_thread, const axis2_env_t *env); /** - * @param svr_thread pointer to server thread - * @param env pointer to environment struct - */ + * @param svr_thread pointer to server thread + * @param env pointer to environment struct + */ axis2_bool_t (AXIS2_CALL * is_running)( axis2_http_svr_thread_t *svr_thread, const axis2_env_t *env); /** - * @param svr_thread pointer to server thread - * @param env pointer to environment struct - * @param worker pointer to worker - */ + * @param svr_thread pointer to server thread + * @param env pointer to environment struct + * @param worker pointer to worker + */ axis2_status_t (AXIS2_CALL * set_worker)( axis2_http_svr_thread_t *svr_thread, const axis2_env_t *env, - axis2_http_worker_t *worker); + axis2_http_worker_t *worker); /** - * @param svr_thread pointer to server thread - * @param env pointer to environment struct - */ + * @param svr_thread pointer to server thread + * @param env pointer to environment struct + */ axis2_status_t (AXIS2_CALL * free)( axis2_http_svr_thread_t *svr_thread, @@ -124,7 +124,7 @@ AXIS2_EXTERN axis2_http_svr_thread_t * AXIS2_CALL axis2_http_svr_thread_create ( const axis2_env_t *env, - int port); + int port); /************************** Start of function macros **************************/ Modified: webservices/axis2/trunk/c/include/axis2_http_worker.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_worker.h?rev=428639&r1=428638&r2=428639&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_worker.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_worker.h Thu Aug 3 23:19:55 2006 @@ -54,11 +54,11 @@ AXIS2_DECLARE_DATA struct axis2_http_worker_ops { /** - * @param http_worker pointer to http worker - * @param env pointer to environment struct - * @param svr_conn pointer to svr conn - * @param simple_request pointer to simple request - */ + * @param http_worker pointer to http worker + * @param env pointer to environment struct + * @param svr_conn pointer to svr conn + * @param simple_request pointer to simple request + */ axis2_bool_t (AXIS2_CALL * process_request)( axis2_http_worker_t *http_worker, @@ -67,11 +67,11 @@ axis2_http_simple_request_t *simple_request); /** - * @param http_worker pointer to http worker - * @param env pointer to environment struct - * @param port - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param http_worker pointer to http worker + * @param env pointer to environment struct + * @param port + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * set_svr_port)( axis2_http_worker_t *http_worker, @@ -79,10 +79,10 @@ int port); /** - * @param http_worker pointer to http worker - * @param env pointer to environment strut - * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE - */ + * @param http_worker pointer to http worker + * @param env pointer to environment strut + * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE + */ axis2_status_t (AXIS2_CALL * free)( axis2_http_worker_t *http_worker, @@ -106,7 +106,7 @@ AXIS2_EXTERN axis2_http_worker_t * AXIS2_CALL axis2_http_worker_create ( const axis2_env_t *env, - axis2_conf_ctx_t *conf_ctx); + axis2_conf_ctx_t *conf_ctx); /************************** Start of function macros **************************/ --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org