Diff for /embedaddon/lighttpd/src/request.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2013/10/14 10:32:48 version 1.1.1.2, 2016/11/02 10:35:00
Line 1 Line 1
 #ifndef _REQUEST_H_  #ifndef _REQUEST_H_
 #define _REQUEST_H_  #define _REQUEST_H_
   #include "first.h"
   
 #include "server.h"  #include "server.h"
   
   typedef enum {
     HTTP_PARSEOPT_HEADER_STRICT  = 1
    ,HTTP_PARSEOPT_HOST_STRICT    = 2
    ,HTTP_PARSEOPT_HOST_NORMALIZE = 4
   } http_parseopts_e;
   
 int http_request_parse(server *srv, connection *con);  int http_request_parse(server *srv, connection *con);
 int http_request_header_finished(server *srv, connection *con);  int http_request_header_finished(server *srv, connection *con);
   int http_request_host_normalize(buffer *b);
   
 #endif  #endif

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>