diff options
author | jsing <> | 2017-08-28 17:36:58 +0000 |
---|---|---|
committer | jsing <> | 2017-08-28 17:36:58 +0000 |
commit | 6946bfa953382f8050208e6198d3d6713b681d82 (patch) | |
tree | fd1e6e86b01342a6a9ff433e37ed36471fd5b785 /src/lib/libssl/ssl3.h | |
parent | e790d179f0c122ea11b978a15855d1fc9ccc5033 (diff) | |
download | openbsd-6946bfa953382f8050208e6198d3d6713b681d82.tar.gz openbsd-6946bfa953382f8050208e6198d3d6713b681d82.tar.bz2 openbsd-6946bfa953382f8050208e6198d3d6713b681d82.zip |
Completely remove NPN remnants.
Based on a diff from doug@, similar diff from inoguchi@
Diffstat (limited to 'src/lib/libssl/ssl3.h')
-rw-r--r-- | src/lib/libssl/ssl3.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lib/libssl/ssl3.h b/src/lib/libssl/ssl3.h index 91cbaf29e3..12ef56b522 100644 --- a/src/lib/libssl/ssl3.h +++ b/src/lib/libssl/ssl3.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl3.h,v 1.45 2017/01/22 09:02:07 jsing Exp $ */ | 1 | /* $OpenBSD: ssl3.h,v 1.46 2017/08/28 17:36:58 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -415,8 +415,6 @@ typedef struct ssl3_state_st { | |||
415 | #define SSL3_ST_CW_CERT_VRFY_B (0x191|SSL_ST_CONNECT) | 415 | #define SSL3_ST_CW_CERT_VRFY_B (0x191|SSL_ST_CONNECT) |
416 | #define SSL3_ST_CW_CHANGE_A (0x1A0|SSL_ST_CONNECT) | 416 | #define SSL3_ST_CW_CHANGE_A (0x1A0|SSL_ST_CONNECT) |
417 | #define SSL3_ST_CW_CHANGE_B (0x1A1|SSL_ST_CONNECT) | 417 | #define SSL3_ST_CW_CHANGE_B (0x1A1|SSL_ST_CONNECT) |
418 | #define SSL3_ST_CW_NEXT_PROTO_A (0x200|SSL_ST_CONNECT) | ||
419 | #define SSL3_ST_CW_NEXT_PROTO_B (0x201|SSL_ST_CONNECT) | ||
420 | #define SSL3_ST_CW_FINISHED_A (0x1B0|SSL_ST_CONNECT) | 418 | #define SSL3_ST_CW_FINISHED_A (0x1B0|SSL_ST_CONNECT) |
421 | #define SSL3_ST_CW_FINISHED_B (0x1B1|SSL_ST_CONNECT) | 419 | #define SSL3_ST_CW_FINISHED_B (0x1B1|SSL_ST_CONNECT) |
422 | /* read from server */ | 420 | /* read from server */ |
@@ -462,8 +460,6 @@ typedef struct ssl3_state_st { | |||
462 | #define SSL3_ST_SR_CERT_VRFY_B (0x1A1|SSL_ST_ACCEPT) | 460 | #define SSL3_ST_SR_CERT_VRFY_B (0x1A1|SSL_ST_ACCEPT) |
463 | #define SSL3_ST_SR_CHANGE_A (0x1B0|SSL_ST_ACCEPT) | 461 | #define SSL3_ST_SR_CHANGE_A (0x1B0|SSL_ST_ACCEPT) |
464 | #define SSL3_ST_SR_CHANGE_B (0x1B1|SSL_ST_ACCEPT) | 462 | #define SSL3_ST_SR_CHANGE_B (0x1B1|SSL_ST_ACCEPT) |
465 | #define SSL3_ST_SR_NEXT_PROTO_A (0x210|SSL_ST_ACCEPT) | ||
466 | #define SSL3_ST_SR_NEXT_PROTO_B (0x211|SSL_ST_ACCEPT) | ||
467 | #define SSL3_ST_SR_FINISHED_A (0x1C0|SSL_ST_ACCEPT) | 463 | #define SSL3_ST_SR_FINISHED_A (0x1C0|SSL_ST_ACCEPT) |
468 | #define SSL3_ST_SR_FINISHED_B (0x1C1|SSL_ST_ACCEPT) | 464 | #define SSL3_ST_SR_FINISHED_B (0x1C1|SSL_ST_ACCEPT) |
469 | /* write to client */ | 465 | /* write to client */ |
@@ -489,8 +485,6 @@ typedef struct ssl3_state_st { | |||
489 | #define SSL3_MT_FINISHED 20 | 485 | #define SSL3_MT_FINISHED 20 |
490 | #define SSL3_MT_CERTIFICATE_STATUS 22 | 486 | #define SSL3_MT_CERTIFICATE_STATUS 22 |
491 | 487 | ||
492 | #define SSL3_MT_NEXT_PROTO 67 | ||
493 | |||
494 | #define DTLS1_MT_HELLO_VERIFY_REQUEST 3 | 488 | #define DTLS1_MT_HELLO_VERIFY_REQUEST 3 |
495 | 489 | ||
496 | #define SSL3_MT_CCS 1 | 490 | #define SSL3_MT_CCS 1 |