Lines Matching refs:PySSLSocket
323 } PySSLSocket; typedef
364 static int PySSL_set_owner(PySSLSocket *, PyObject *, void *);
365 static int PySSL_set_session(PySSLSocket *, PyObject *, void *);
443 PySSLSocket *sslsock, PyObject *type, int ssl_errno, in fill_and_set_sslerror()
567 PySSL_ChainExceptions(PySSLSocket *sslsock) { in PySSL_ChainExceptions()
579 PySSL_SetError(PySSLSocket *sslsock, int ret, const char *filename, int lineno) in PySSL_SetError()
718 _ssl_configure_hostname(PySSLSocket *self, const char* server_hostname) in _ssl_configure_hostname()
783 static PySSLSocket *
790 PySSLSocket *self; in newPySSLSocket()
809 self = PyObject_GC_New(PySSLSocket, in newPySSLSocket()
929 _ssl__SSLSocket_do_handshake_impl(PySSLSocket *self) in _ssl__SSLSocket_do_handshake_impl()
1819 _ssl__SSLSocket_getpeercert_impl(PySSLSocket *self, int binary_mode) in _ssl__SSLSocket_getpeercert_impl()
1855 _ssl__SSLSocket_get_verified_chain_impl(PySSLSocket *self) in _ssl__SSLSocket_get_verified_chain_impl()
1872 _ssl__SSLSocket_get_unverified_chain_impl(PySSLSocket *self) in _ssl__SSLSocket_get_unverified_chain_impl()
2010 _ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self) in _ssl__SSLSocket_shared_ciphers_impl()
2059 _ssl__SSLSocket_cipher_impl(PySSLSocket *self) in _ssl__SSLSocket_cipher_impl()
2077 _ssl__SSLSocket_version_impl(PySSLSocket *self) in _ssl__SSLSocket_version_impl()
2099 _ssl__SSLSocket_selected_alpn_protocol_impl(PySSLSocket *self) in _ssl__SSLSocket_selected_alpn_protocol_impl()
2117 _ssl__SSLSocket_compression_impl(PySSLSocket *self) in _ssl__SSLSocket_compression_impl()
2138 static PySSLContext *PySSL_get_context(PySSLSocket *self, void *closure) { in PySSL_get_context()
2143 static int PySSL_set_context(PySSLSocket *self, PyObject *value, in PySSL_set_context()
2173 PySSL_get_server_side(PySSLSocket *self, void *c) in PySSL_get_server_side()
2182 PySSL_get_server_hostname(PySSLSocket *self, void *c) in PySSL_get_server_hostname()
2194 PySSL_get_owner(PySSLSocket *self, void *c) in PySSL_get_owner()
2207 PySSL_set_owner(PySSLSocket *self, PyObject *value, void *c) in PySSL_set_owner()
2220 PySSL_traverse(PySSLSocket *self, visitproc visit, void *arg) in PySSL_traverse()
2230 PySSL_clear(PySSLSocket *self) in PySSL_clear()
2239 PySSL_dealloc(PySSLSocket *self) in PySSL_dealloc()
2335 _ssl__SSLSocket_write_impl(PySSLSocket *self, Py_buffer *b) in _ssl__SSLSocket_write_impl()
2440 _ssl__SSLSocket_pending_impl(PySSLSocket *self) in _ssl__SSLSocket_pending_impl()
2470 _ssl__SSLSocket_read_impl(PySSLSocket *self, Py_ssize_t len, in _ssl__SSLSocket_read_impl()
2607 _ssl__SSLSocket_shutdown_impl(PySSLSocket *self) in _ssl__SSLSocket_shutdown_impl()
2731 _ssl__SSLSocket_get_channel_binding_impl(PySSLSocket *self, in _ssl__SSLSocket_get_channel_binding_impl()
2771 _ssl__SSLSocket_verify_client_post_handshake_impl(PySSLSocket *self) in _ssl__SSLSocket_verify_client_post_handshake_impl()
2830 PySSL_get_session(PySSLSocket *self, void *closure) { in PySSL_get_session()
2863 static int PySSL_set_session(PySSLSocket *self, PyObject *value, in PySSL_set_session()
2911 PySSL_get_session_reused(PySSLSocket *self, void *closure) { in PySSL_get_session_reused()
2968 .basicsize = sizeof(PySSLSocket),
4390 PySSLSocket *ssl; in _servername_callback()