mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Fix previous commit: add missing function
This commit is contained in:
parent
7f2bd84c85
commit
dada56db5e
1 changed files with 8 additions and 0 deletions
|
@ -142,3 +142,11 @@ lsquic_conn_quic_version (const lsquic_conn_t *lconn)
|
|||
}
|
||||
|
||||
|
||||
struct stack_st_X509 *
|
||||
lsquic_conn_get_server_cert_chain (struct lsquic_conn *lconn)
|
||||
{
|
||||
if (lconn->cn_enc_session)
|
||||
return lconn->cn_esf->esf_get_server_cert_chain(lconn->cn_enc_session);
|
||||
else
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue