Lines Matching refs:PySSLSocket
447 } PySSLSocket; typedef
493 static int PySSL_set_owner(PySSLSocket *, PyObject *, void *);
494 static int PySSL_set_session(PySSLSocket *, PyObject *, void *);
574 fill_and_set_sslerror(PySSLSocket *sslsock, PyObject *type, int ssl_errno, in fill_and_set_sslerror()
708 PySSL_SetError(PySSLSocket *sslsock, int ret, const char *filename, int lineno) in PySSL_SetError()
820 _ssl_configure_hostname(PySSLSocket *self, const char* server_hostname) in _ssl_configure_hostname()
884 static PySSLSocket *
891 PySSLSocket *self; in newPySSLSocket()
895 self = PyObject_New(PySSLSocket, &PySSLSocket_Type); in newPySSLSocket()
985 _ssl__SSLSocket_do_handshake_impl(PySSLSocket *self) in _ssl__SSLSocket_do_handshake_impl()
1806 _ssl__SSLSocket_getpeercert_impl(PySSLSocket *self, int binary_mode) in _ssl__SSLSocket_getpeercert_impl()
1943 _ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self) in _ssl__SSLSocket_shared_ciphers_impl()
1972 _ssl__SSLSocket_cipher_impl(PySSLSocket *self) in _ssl__SSLSocket_cipher_impl()
1990 _ssl__SSLSocket_version_impl(PySSLSocket *self) in _ssl__SSLSocket_version_impl()
2013 _ssl__SSLSocket_selected_npn_protocol_impl(PySSLSocket *self) in _ssl__SSLSocket_selected_npn_protocol_impl()
2034 _ssl__SSLSocket_selected_alpn_protocol_impl(PySSLSocket *self) in _ssl__SSLSocket_selected_alpn_protocol_impl()
2053 _ssl__SSLSocket_compression_impl(PySSLSocket *self) in _ssl__SSLSocket_compression_impl()
2074 static PySSLContext *PySSL_get_context(PySSLSocket *self, void *closure) { in PySSL_get_context()
2079 static int PySSL_set_context(PySSLSocket *self, PyObject *value, in PySSL_set_context()
2110 PySSL_get_server_side(PySSLSocket *self, void *c) in PySSL_get_server_side()
2119 PySSL_get_server_hostname(PySSLSocket *self, void *c) in PySSL_get_server_hostname()
2131 PySSL_get_owner(PySSLSocket *self, void *c) in PySSL_get_owner()
2144 PySSL_set_owner(PySSLSocket *self, PyObject *value, void *c) in PySSL_set_owner()
2157 static void PySSL_dealloc(PySSLSocket *self) in PySSL_dealloc()
2249 _ssl__SSLSocket_write_impl(PySSLSocket *self, Py_buffer *b) in _ssl__SSLSocket_write_impl()
2355 _ssl__SSLSocket_pending_impl(PySSLSocket *self) in _ssl__SSLSocket_pending_impl()
2385 _ssl__SSLSocket_read_impl(PySSLSocket *self, int len, int group_right_1, in _ssl__SSLSocket_read_impl()
2516 _ssl__SSLSocket_shutdown_impl(PySSLSocket *self) in _ssl__SSLSocket_shutdown_impl()
2634 _ssl__SSLSocket_get_channel_binding_impl(PySSLSocket *self, in _ssl__SSLSocket_get_channel_binding_impl()
2674 _ssl__SSLSocket_verify_client_post_handshake_impl(PySSLSocket *self) in _ssl__SSLSocket_verify_client_post_handshake_impl()
2736 PySSL_get_session(PySSLSocket *self, void *closure) { in PySSL_get_session()
2772 static int PySSL_set_session(PySSLSocket *self, PyObject *value, in PySSL_set_session()
2826 PySSL_get_session_reused(PySSLSocket *self, void *closure) { in PySSL_get_session_reused()
2874 sizeof(PySSLSocket), /*tp_basicsize*/
4286 PySSLSocket *ssl; in _servername_callback()