Re: ngx_http_v3_init_session function

2024-02-14 Thread Clima Gabriel
Thanks you On Fri, Feb 9, 2024 at 1:58 PM Roman Arutyunyan wrote: > Hi Gabriel, > > On Wed, Feb 07, 2024 at 03:34:42PM +0200, Clima Gabriel wrote: > > Hello Roman, > > Thank you. Noted about the mailing list. > > > > > > My function will be called from / inline in ngx_http_ssl_servername. > >

Re: ngx_http_v3_init_session function

2024-02-09 Thread Roman Arutyunyan
Hi Gabriel, On Wed, Feb 07, 2024 at 03:34:42PM +0200, Clima Gabriel wrote: > Hello Roman, > Thank you. Noted about the mailing list. > > > My function will be called from / inline in ngx_http_ssl_servername. > ngx_http_ssl_servername itself is registered as a SNI TSL extensions > callback like

Re: ngx_http_v3_init_session function

2024-02-07 Thread Clima Gabriel
Hello Roman, Thank you. Noted about the mailing list. My function will be called from / inline in ngx_http_ssl_servername. ngx_http_ssl_servername itself is registered as a SNI TSL extensions callback like this: #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME if

Re: ngx_http_v3_init_session function

2024-02-07 Thread Roman Arutyunyan
Hi, On Mon, Feb 05, 2024 at 11:24:39PM +0200, Clima Gabriel wrote: > Hello everyone, > > (the code is probably clearer and attached below) Please note that this mailing list is not for development question. We have a separate list nginx-de...@nginx.org for this. > This function modifies what

Re: ngx_http_v3_init_session function

2024-02-05 Thread J Carter
On Tue, 6 Feb 2024 00:44:56 + J Carter wrote: > On Tue, 6 Feb 2024 00:16:31 + > J Carter wrote: > > > Hello, > > > > On Mon, 5 Feb 2024 23:24:39 +0200 > > Clima Gabriel wrote: > > > > > Hello everyone, > > > > > > (the code is probably clearer and attached below) > > > This

Re: ngx_http_v3_init_session function

2024-02-05 Thread J Carter
On Tue, 6 Feb 2024 00:16:31 + J Carter wrote: > Hello, > > On Mon, 5 Feb 2024 23:24:39 +0200 > Clima Gabriel wrote: > > > Hello everyone, > > > > (the code is probably clearer and attached below) > > This function modifies what ngx_connection_t->data points to. > > ngx_connection_t->data

Re: ngx_http_v3_init_session function

2024-02-05 Thread J Carter
Hello, On Mon, 5 Feb 2024 23:24:39 +0200 Clima Gabriel wrote: > Hello everyone, > > (the code is probably clearer and attached below) > This function modifies what ngx_connection_t->data points to. > ngx_connection_t->data is initially *ngx_http_connection_t. > The *ngx_http_connection_t is

ngx_http_v3_init_session function

2024-02-05 Thread Clima Gabriel
Hello everyone, (the code is probably clearer and attached below) This function modifies what ngx_connection_t->data points to. ngx_connection_t->data is initially *ngx_http_connection_t. The *ngx_http_connection_t is assigned to ngx_http_v3_session_t->http_connection And the