Skip to content

Commit

Permalink
renamed the source file names a bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
agentzh committed Nov 3, 2010
1 parent c5b6141 commit c808e71
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions config
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
ngx_addon_name=ngx_http_headers_more_filter_module ngx_addon_name=ngx_http_headers_more_filter_module
HTTP_AUX_FILTER_MODULES="$HTTP_AUX_FILTER_MODULES ngx_http_headers_more_filter_module" HTTP_AUX_FILTER_MODULES="$HTTP_AUX_FILTER_MODULES ngx_http_headers_more_filter_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/src/ngx_http_headers_more_filter_module.c $ngx_addon_dir/src/ngx_http_headers_more_output_headers.c $ngx_addon_dir/src/ngx_http_headers_more_input_headers.c $ngx_addon_dir/src/ngx_http_headers_more_util.c" NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/src/ngx_http_headers_more_filter_module.c $ngx_addon_dir/src/ngx_http_headers_more_headers_out.c $ngx_addon_dir/src/ngx_http_headers_more_headers_in.c $ngx_addon_dir/src/ngx_http_headers_more_util.c"
NGX_ADDON_DEPS="$NGX_ADDON_DEPS $ngx_addon_dir/src/ddebug.h $ngx_addon_dir/src/ngx_http_headers_more_filter_module.h $ngx_addon_dir/src/ngx_http_headers_more_input_headers.h $ngx_addon_dir/src/ngx_http_headers_more_output_headers.h $ngx_addon_dir/src/ngx_http_headers_more_input_headers.h $ngx_addon_dir/src/ngx_http_headers_more_util.h" NGX_ADDON_DEPS="$NGX_ADDON_DEPS $ngx_addon_dir/src/ddebug.h $ngx_addon_dir/src/ngx_http_headers_more_filter_module.h $ngx_addon_dir/src/ngx_http_headers_more_headers_in.h $ngx_addon_dir/src/ngx_http_headers_more_headers_out.h $ngx_addon_dir/src/ngx_http_headers_more_headers_in.h $ngx_addon_dir/src/ngx_http_headers_more_util.h"


4 changes: 2 additions & 2 deletions src/ngx_http_headers_more_filter_module.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#include "ddebug.h" #include "ddebug.h"


#include "ngx_http_headers_more_filter_module.h" #include "ngx_http_headers_more_filter_module.h"
#include "ngx_http_headers_more_output_headers.h" #include "ngx_http_headers_more_headers_out.h"
#include "ngx_http_headers_more_input_headers.h" #include "ngx_http_headers_more_headers_in.h"


#include <ngx_config.h> #include <ngx_config.h>


Expand Down
2 changes: 1 addition & 1 deletion src/ngx_http_headers_more_filter_module.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct ngx_http_headers_more_header_val_s {
ngx_http_headers_more_set_header_pt handler; ngx_http_headers_more_set_header_pt handler;
ngx_uint_t offset; ngx_uint_t offset;
ngx_flag_t replace; ngx_flag_t replace;
ngx_flag_t wildcard; ngx_flag_t wildcard;
}; };


typedef struct { typedef struct {
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


#include "ddebug.h" #include "ddebug.h"


#include "ngx_http_headers_more_input_headers.h" #include "ngx_http_headers_more_headers_in.h"
#include "ngx_http_headers_more_util.h" #include "ngx_http_headers_more_util.h"
#include <ctype.h> #include <ctype.h>


Expand Down
File renamed without changes.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


#include "ddebug.h" #include "ddebug.h"


#include "ngx_http_headers_more_output_headers.h" #include "ngx_http_headers_more_headers_out.h"
#include "ngx_http_headers_more_util.h" #include "ngx_http_headers_more_util.h"
#include <ctype.h> #include <ctype.h>


Expand Down
File renamed without changes.

0 comments on commit c808e71

Please sign in to comment.