Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 1314676 - Refactor extension handler files. r=mt
This doesn't represent any new code or functionality. I just split things up into three files:

Summary:
- ssl3ext.c        -- generic extension processing machinery
- ssl3exthandle.c  -- extension handlers for TLS < 1.3
- tls13exthandle.c -- extension handlers for TLS 1.3

Note that there are still extension handlers in ssl3ext.c.

Reviewers: mt

Reviewed By: mt

Differential Revision: https://nss-dev.phacility.com/D141
  • Loading branch information
ekr committed Nov 2, 2016
1 parent 1c7088a commit d4ea441
Show file tree
Hide file tree
Showing 7 changed files with 3,779 additions and 3,720 deletions.
2 changes: 2 additions & 0 deletions lib/ssl/manifest.mn
Expand Up @@ -30,6 +30,7 @@ CSRCS = \
sslerrstrs.c \
sslinit.c \
ssl3ext.c \
ssl3exthandle.c \
sslmutex.c \
sslnonce.c \
sslreveal.c \
Expand All @@ -43,6 +44,7 @@ CSRCS = \
sslinfo.c \
ssl3ecc.c \
tls13con.c \
tls13exthandle.c \
tls13hkdf.c \
sslcert.c \
sslgrp.c \
Expand Down
2 changes: 2 additions & 0 deletions lib/ssl/ssl.gyp
Expand Up @@ -17,6 +17,7 @@
'ssl3con.c',
'ssl3ecc.c',
'ssl3ext.c',
'ssl3exthandle.c'
'ssl3gthr.c',
'sslauth.c',
'sslcert.c',
Expand All @@ -37,6 +38,7 @@
'ssltrace.c',
'sslver.c',
'tls13con.c',
'tls13exthandle.c',
'tls13hkdf.c',
],
'conditions': [
Expand Down

0 comments on commit d4ea441

Please sign in to comment.