diff options
author | Omar Polo <op@omarpolo.com> | 2022-01-01 16:33:44 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2022-01-01 16:33:44 +0000 |
commit | d49093c105e7e9af2638bce945374ac0036b3498 (patch) | |
tree | 813102bedbdfb4ead9fe520c2dea30b966a02578 /gmid.c | |
parent | da2185f37f70f8665c4d800f8f9bbf4027fd7b81 (diff) |
support optional client certificate for proxy rule
Diffstat (limited to 'gmid.c')
-rw-r--r-- | gmid.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -304,6 +304,9 @@ free_config(void) free(l->proxy_host); + tls_unload_file(l->proxy_cert, l->proxy_cert_len); + tls_unload_file(l->proxy_key, l->proxy_key_len); + if (l->dirfd != -1) close(l->dirfd); |