diff options
author | Roman Arutyunyan <arut@nginx.com> | 2020-07-23 13:41:24 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2020-07-23 13:41:24 +0300 |
commit | 6d064c94e0600f7ff15e2815784f9f89cc4858b4 (patch) | |
tree | 4ed79e2d168f9c145167a5fe924bc1e050f3ad00 /src/http/ngx_http.h | |
parent | 77384356cea5750aee576b7d4a68aa0b0a1c13a1 (diff) | |
download | nginx-6d064c94e0600f7ff15e2815784f9f89cc4858b4.tar.gz nginx-6d064c94e0600f7ff15e2815784f9f89cc4858b4.zip |
HTTP/3: server pushes.
New directives are added:
- http3_max_concurrent_pushes
- http3_push
- http3_push_preload
Diffstat (limited to 'src/http/ngx_http.h')
-rw-r--r-- | src/http/ngx_http.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index 480802d40..2a3d81a37 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -93,6 +93,7 @@ ngx_int_t ngx_http_add_listen(ngx_conf_t *cf, ngx_http_core_srv_conf_t *cscf, void ngx_http_init_connection(ngx_connection_t *c); void ngx_http_close_connection(ngx_connection_t *c); +u_char *ngx_http_log_error(ngx_log_t *log, u_char *buf, size_t len); #if (NGX_HTTP_SSL && defined SSL_CTRL_SET_TLSEXT_HOSTNAME) int ngx_http_ssl_servername(ngx_ssl_conn_t *ssl_conn, int *ad, void *arg); |