Beispiel #1
0
/************************************************************************
* NAME: fnet_http_ssi_handle
*
* DESCRIPTION: 
************************************************************************/
static fnet_return_t fnet_http_ssi_handle (struct fnet_http_if *http, struct fnet_http_uri *uri)
{
    fnet_return_t     result = fnet_http_default_handle (http, uri);
    http->session_active->response.content_length = -1; /* No content length.*/ 
    return result;
}
Beispiel #2
0
/************************************************************************
* NAME: fnet_http_ssi_handle
*
* DESCRIPTION: 
************************************************************************/
static int fnet_http_ssi_handle (struct fnet_http_if * http, struct fnet_http_uri * uri)
{
    int result = fnet_http_default_handle (http, uri);
    http->response.content_length = -1; /* No content length.*/ 
    return result;
}