summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index a5027a92e0..e47f6191c2 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_locl.h,v 1.300 2020/10/11 01:13:04 guenther Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.301 2020/10/11 01:16:31 guenther 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 *
@@ -797,7 +797,7 @@ typedef struct ssl_internal_st {
797 TLS_SESSION_TICKET_EXT *tlsext_session_ticket; 797 TLS_SESSION_TICKET_EXT *tlsext_session_ticket;
798 798
799 STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; /* What we'll do */ 799 STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; /* What we'll do */
800 SRTP_PROTECTION_PROFILE *srtp_profile; /* What's been chosen */ 800 const SRTP_PROTECTION_PROFILE *srtp_profile; /* What's been chosen */
801 801
802 int renegotiate;/* 1 if we are renegotiating. 802 int renegotiate;/* 1 if we are renegotiating.
803 * 2 if we are a server and are inside a handshake 803 * 2 if we are a server and are inside a handshake
@@ -1418,9 +1418,9 @@ void SSL_error_internal(const SSL *s, int r, char *f, int l);
1418#ifndef OPENSSL_NO_SRTP 1418#ifndef OPENSSL_NO_SRTP
1419 1419
1420int srtp_find_profile_by_name(char *profile_name, 1420int srtp_find_profile_by_name(char *profile_name,
1421 SRTP_PROTECTION_PROFILE **pptr, unsigned int len); 1421 const SRTP_PROTECTION_PROFILE **pptr, unsigned int len);
1422int srtp_find_profile_by_num(unsigned int profile_num, 1422int srtp_find_profile_by_num(unsigned int profile_num,
1423 SRTP_PROTECTION_PROFILE **pptr); 1423 const SRTP_PROTECTION_PROFILE **pptr);
1424 1424
1425#endif /* OPENSSL_NO_SRTP */ 1425#endif /* OPENSSL_NO_SRTP */
1426 1426