Thanks, r1884431.

On Mon, Dec 14, 2020 at 6:08 PM Eric Covener <cove...@gmail.com> wrote:
>
> +1
>
> On Mon, Dec 14, 2020 at 11:59 AM Yann Ylavic <ylavic....@gmail.com> wrote:
> >
> > It's defined like this in http_core.h:
> >
> > typedef struct core_net_rec {
> >     /** Connection to the client */
> >     apr_socket_t *client_socket;
> >
> >     /** connection record */
> >     conn_rec *c;
> >
> >     core_output_filter_ctx_t *out_ctx;
> >     core_ctx_t *in_ctx;
> > } core_net_rec;
> >
> > Created in core_pre_connection() and passed to the core input/output
> > filters, the ->client_socket is the same as the conn_config_t's (which
> > the core filters could use instead), the ->c is unused, and the
> > ->in/out_ctx fields are opaque and initialized by the core filters
> > themselves.
> >
> > So could/should we remove this struct like the attached patch does
> > (trunk only, plus MMN major)?
> >
> > Regards;
> > Yann.
>
>
>
> --
> Eric Covener
> cove...@gmail.com

Reply via email to