Skip to content

Commit

Permalink
quic: use QuicCallbackScope consistently for QuicSession
Browse files Browse the repository at this point in the history
  • Loading branch information
jasnell committed Jul 31, 2020
1 parent d2da015 commit ff8677f
Show file tree
Hide file tree
Showing 2 changed files with 190 additions and 96 deletions.
9 changes: 4 additions & 5 deletions lib/internal/quic/core.js
Expand Up @@ -2287,12 +2287,11 @@ class QuicServerSession extends QuicSession {
async [kHandleOcsp](servername) {
const internalState = this[kInternalState];
const { context } = this[kInternalServerState];
const certificate = context?.context.getCertificate?.();
const issuer = context?.context.getIssuer?.();
return internalState.ocspHandler?.('request', {
if (!internalState.ocspHandler || !context) return undefined;
return internalState.ocspHandler('request', {
servername,
certificate,
issuer
certificate: context.context.getCertificate(),
issuer: context.context.getIssuer()
});
}

Expand Down

0 comments on commit ff8677f

Please sign in to comment.