Home
last modified time | relevance | path

Searched refs:custom_bio_methods (Results 1 – 1 of 1) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/dtls/
Dgstdtlsconnection.c1151 static BIO_METHOD custom_bio_methods = { variable
1167 return &custom_bio_methods; in BIO_s_gst_dtls_connection()
1170 static BIO_METHOD *custom_bio_methods; variable
1175 if (custom_bio_methods != NULL) in BIO_s_gst_dtls_connection()
1176 return custom_bio_methods; in BIO_s_gst_dtls_connection()
1178 custom_bio_methods = BIO_meth_new (BIO_TYPE_BIO, "stream"); in BIO_s_gst_dtls_connection()
1179 if (custom_bio_methods == NULL in BIO_s_gst_dtls_connection()
1180 || !BIO_meth_set_write (custom_bio_methods, bio_method_write) in BIO_s_gst_dtls_connection()
1181 || !BIO_meth_set_read (custom_bio_methods, bio_method_read) in BIO_s_gst_dtls_connection()
1182 || !BIO_meth_set_ctrl (custom_bio_methods, bio_method_ctrl) in BIO_s_gst_dtls_connection()
[all …]