soap_device: Doxygen and code reformat.

This commit is contained in:
Marcelo Roberto Jimenez 2010-11-24 12:33:13 -02:00
parent 57e9584f4e
commit 0977f8864d
2 changed files with 479 additions and 625 deletions

View File

@ -32,31 +32,25 @@
#ifndef SOAPLIB_H #ifndef SOAPLIB_H
#define SOAPLIB_H #define SOAPLIB_H
/*!
* \file
*/
/* SOAP module API to be called in Upnp-Dk API */ /* SOAP module API to be called in Upnp-Dk API */
/**************************************************************************** /*!
* Function: soap_device_callback * \brief This is a callback called by minisever after receiving the request
* * from the control point. This function will start processing the request.
* Parameters: * It calls handle_invoke_action to handle the SOAP action.
* IN http_parser_t *parser: Parsed request received by the device */
* IN http_message_t* request: HTTP request
* INOUT SOCKINFO *info: socket info
*
* Description: This is a callback called by minisever after receiving
* the request from the control point. This function will start
* processing the request. It calls handle_invoke_action to handle the
* SOAP action
*
* Return: void
*
* Note:
****************************************************************************/
void soap_device_callback( void soap_device_callback(
IN http_parser_t *parser, /*! [in] Parsed request received by the device. */
IN http_message_t* request, http_parser_t *parser,
INOUT SOCKINFO *info); /*! [in] HTTP request. */
http_message_t *request,
/*! [in,out] Socket info. */
SOCKINFO *info);
/**************************************************************************** /****************************************************************************

File diff suppressed because it is too large Load Diff