summaryrefslogtreecommitdiff
path: root/src/lib/libssl/dtls_local.h
diff options
context:
space:
mode:
authorjsing <>2026-04-29 14:59:26 +0000
committerjsing <>2026-04-29 14:59:26 +0000
commita8e84d07d57a010e5209bf1bc34bb670beefeea6 (patch)
tree03860864d4d2c3ef31509cfd545ab0b0b270d11e /src/lib/libssl/dtls_local.h
parent2eadc83a4acf23015d0374b9bbfa92f7b21a24d0 (diff)
downloadopenbsd-a8e84d07d57a010e5209bf1bc34bb670beefeea6.tar.gz
openbsd-a8e84d07d57a010e5209bf1bc34bb670beefeea6.tar.bz2
openbsd-a8e84d07d57a010e5209bf1bc34bb670beefeea6.zip
Make dtls1_retransmit_message() static.
This function is only called from dtls1_retransmit_buffered_messages(). Make it static and move it above the caller. ok kenjiro@ tb@
Diffstat (limited to 'src/lib/libssl/dtls_local.h')
-rw-r--r--src/lib/libssl/dtls_local.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/dtls_local.h b/src/lib/libssl/dtls_local.h
index c7c413fef4..3352b31d3c 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.2 2022/11/26 17:23:18 tb Exp $ */ 1/* $OpenBSD: dtls_local.h,v 1.3 2026/04/29 14:59: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.
@@ -202,8 +202,6 @@ int dtls1_write_bytes(SSL *s, int type, const void *buf, int len);
202 202
203int dtls1_read_failed(SSL *s, int code); 203int dtls1_read_failed(SSL *s, int code);
204int dtls1_buffer_message(SSL *s, int ccs); 204int dtls1_buffer_message(SSL *s, int ccs);
205int dtls1_retransmit_message(SSL *s, unsigned short seq,
206 unsigned long frag_off, int *found);
207int dtls1_get_queue_priority(unsigned short seq, int is_ccs); 205int dtls1_get_queue_priority(unsigned short seq, int is_ccs);
208int dtls1_retransmit_buffered_messages(SSL *s); 206int dtls1_retransmit_buffered_messages(SSL *s);
209void dtls1_clear_record_buffer(SSL *s); 207void dtls1_clear_record_buffer(SSL *s);