aboutsummaryrefslogtreecommitdiff
path: root/ssl/statem/statem.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-10-05 10:39:54 +0100
committerMatt Caswell <matt@openssl.org>2015-10-30 08:39:46 +0000
commitfe3a329117dbb04a17ca2cb9fc9e3493dc7f03ab (patch)
tree20150679f5f4e133a853b4d2c4b0e56fcdc18d66 /ssl/statem/statem.h
parent7c8b53571698f32219a912e05bc71df4017094c1 (diff)
downloadopenssl-fe3a329117dbb04a17ca2cb9fc9e3493dc7f03ab.zip
openssl-fe3a329117dbb04a17ca2cb9fc9e3493dc7f03ab.tar.gz
openssl-fe3a329117dbb04a17ca2cb9fc9e3493dc7f03ab.tar.bz2
Change statem prefix to ossl_statem
Change various state machine functions to use the prefix ossl_statem instead. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/statem/statem.h')
-rw-r--r--ssl/statem/statem.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ssl/statem/statem.h b/ssl/statem/statem.h
index 44c1dd4..fcc6163 100644
--- a/ssl/statem/statem.h
+++ b/ssl/statem/statem.h
@@ -150,17 +150,17 @@ typedef struct statem_st STATEM;
* *
*****************************************************************************/
-__owur int statem_accept(SSL *s);
-__owur int statem_connect(SSL *s);
-void statem_clear(SSL *s);
-void statem_set_renegotiate(SSL *s);
-void statem_set_error(SSL *s);
-int statem_in_error(const SSL *s);
-void statem_set_in_init(SSL *s, int init);
-__owur int statem_app_data_allowed(SSL *s);
+__owur int ossl_statem_accept(SSL *s);
+__owur int ossl_statem_connect(SSL *s);
+void ossl_statem_clear(SSL *s);
+void ossl_statem_set_renegotiate(SSL *s);
+void ossl_statem_set_error(SSL *s);
+int ossl_statem_in_error(const SSL *s);
+void ossl_statem_set_in_init(SSL *s, int init);
+__owur int ossl_statem_app_data_allowed(SSL *s);
#ifndef OPENSSL_NO_SCTP
-void statem_set_sctp_read_sock(SSL *s, int read_sock);
-__owur int statem_in_sctp_read_sock(SSL *s);
+void ossl_statem_set_sctp_read_sock(SSL *s, int read_sock);
+__owur int ossl_statem_in_sctp_read_sock(SSL *s);
#endif