-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix add_variable, since it called at postconfiguration, and also over…
…write v; make possibe working with map ''{} and other nginx.conf releated features by adding no_found; small refactoring of the code to make it more close to official nginx's style and logic
- Loading branch information
Showing
4 changed files
with
111 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
/* | ||
* Obj: nginx_ssl_fingerprint.c | ||
*/ | ||
|
||
#ifndef NGINX_SSL_FINGERPRINT_H_ | ||
#define NGINX_SSL_FINGERPRINT_H_ 1 | ||
|
||
|
||
#include <ngx_config.h> | ||
#include <ngx_core.h> | ||
#include <ngx_http.h> | ||
|
||
int ngx_ssl_ja3(ngx_connection_t *c); | ||
int ngx_ssl_ja3_hash(ngx_connection_t *c); | ||
int ngx_http2_fingerprint(ngx_connection_t *c, ngx_http_v2_connection_t *h2c); | ||
|
||
#endif /** NGINX_SSL_FINGERPRINT_H_ */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters