summaryrefslogtreecommitdiff
path: root/src/lib/libssl/dtls_local.h
diff options
context:
space:
mode:
authorjsing <>2026-06-06 15:24:26 +0000
committerjsing <>2026-06-06 15:24:26 +0000
commit34bb3178dc6005cb170c6f002dfd49e503c94bf8 (patch)
treef982a8a1b74e4fa1d9d89087ed58c156734b9b83 /src/lib/libssl/dtls_local.h
parentea2a1c165f2ed603b827d3bc22b989c30325f200 (diff)
downloadopenbsd-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.h3
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);
222int dtls1_get_message(SSL *s, int st1, int stn, int mt, long max); 222int dtls1_get_message(SSL *s, int st1, int stn, int mt, long max);
223int dtls1_get_record(SSL *s); 223int dtls1_get_record(SSL *s);
224 224
225int dtls12_ccs_built(SSL *s);
225int dtls12_handshake_msg_built(SSL *s); 226int dtls12_handshake_msg_built(SSL *s);
226__END_HIDDEN_DECLS 227__END_HIDDEN_DECLS
227 228