CLEANUP: ssl/cli: use a local context for "set ssl cert"
authorWilly Tarreau <w@1wt.eu>
Wed, 4 May 2022 18:05:55 +0000 (20:05 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 6 May 2022 16:13:36 +0000 (18:13 +0200)
commit329f4b4f2f6cf66a87a71f4412b16a09074ed0a8
treef3d3901ce1580717652075010bf12c77655ac21c
parentcb1b4ed7b654e8ad050cfcdf91dc7c23508dd770
CLEANUP: ssl/cli: use a local context for "set ssl cert"

The command doesn't really need any storage since there's only a parser,
but since it used this context, there might have been plans for extension,
so better continue with a persistent one. Only old_ckchs, new_ckchs, and
path were being used from the appctx's ssl context. There ones moved to
the local definition, and the two former ones were removed from the appctx
since not used anymore.
include/haproxy/applet-t.h
src/ssl_ckch.c