diff options
| author | jsing <> | 2026-06-06 15:24:26 +0000 |
|---|---|---|
| committer | jsing <> | 2026-06-06 15:24:26 +0000 |
| commit | 34bb3178dc6005cb170c6f002dfd49e503c94bf8 (patch) | |
| tree | f982a8a1b74e4fa1d9d89087ed58c156734b9b83 /src/lib/libssl/dtls_local.h | |
| parent | ea2a1c165f2ed603b827d3bc22b989c30325f200 (diff) | |
| download | openbsd-34bb3178dc6005cb170c6f002dfd49e503c94bf8.tar.gz openbsd-34bb3178dc6005cb170c6f002dfd49e503c94bf8.tar.bz2 openbsd-34bb3178dc6005cb170c6f002dfd49e503c94bf8.zip | |
Move DTLS change cipher spec handling to its own function.
When a TLSv1.2 change cipher spec message has been built, call a separate
function that can handle the DTLS specific processing rather than including
this in the TLS code.
ok kenjiro@ tb@
Diffstat (limited to 'src/lib/libssl/dtls_local.h')
| -rw-r--r-- | src/lib/libssl/dtls_local.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/dtls_local.h b/src/lib/libssl/dtls_local.h index 9da48d1739..9939928b38 100644 --- a/src/lib/libssl/dtls_local.h +++ b/src/lib/libssl/dtls_local.h | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: dtls_local.h,v 1.7 2026/06/06 15:22:25 jsing Exp $ */ | 1 | /* $OpenBSD: dtls_local.h,v 1.8 2026/06/06 15:24:26 jsing Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
| 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
| @@ -222,6 +222,7 @@ long dtls1_ctrl(SSL *s, int cmd, long larg, void *parg); | |||
| 222 | int dtls1_get_message(SSL *s, int st1, int stn, int mt, long max); | 222 | int dtls1_get_message(SSL *s, int st1, int stn, int mt, long max); |
| 223 | int dtls1_get_record(SSL *s); | 223 | int dtls1_get_record(SSL *s); |
| 224 | 224 | ||
| 225 | int dtls12_ccs_built(SSL *s); | ||
| 225 | int dtls12_handshake_msg_built(SSL *s); | 226 | int dtls12_handshake_msg_built(SSL *s); |
| 226 | __END_HIDDEN_DECLS | 227 | __END_HIDDEN_DECLS |
| 227 | 228 | ||
