Lines Matching refs:PySSLSocket
476 } PySSLSocket;
512 class _ssl._SSLSocket "PySSLSocket *" "&PySSLSocket_Type"
522 static int PySSL_set_owner(PySSLSocket *, PyObject *, void *);
523 static int PySSL_set_session(PySSLSocket *, PyObject *, void *);
541 /* Get the socket from a PySSLSocket, if it has one */
605 fill_and_set_sslerror(PySSLSocket *sslsock, PyObject *type, int ssl_errno,
738 PySSL_ChainExceptions(PySSLSocket *sslsock) {
750 PySSL_SetError(PySSLSocket *sslsock, int ret, const char *filename, int lineno)
864 _ssl_configure_hostname(PySSLSocket *self, const char* server_hostname)
929 static PySSLSocket *
936 PySSLSocket *self;
940 self = PyObject_New(PySSLSocket, &PySSLSocket_Type);
1052 _ssl__SSLSocket_do_handshake_impl(PySSLSocket *self)
1921 _ssl__SSLSocket_getpeercert_impl(PySSLSocket *self, int binary_mode)
2058 _ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self)
2087 _ssl__SSLSocket_cipher_impl(PySSLSocket *self)
2105 _ssl__SSLSocket_version_impl(PySSLSocket *self)
2128 _ssl__SSLSocket_selected_npn_protocol_impl(PySSLSocket *self)
2149 _ssl__SSLSocket_selected_alpn_protocol_impl(PySSLSocket *self)
2168 _ssl__SSLSocket_compression_impl(PySSLSocket *self)
2189 static PySSLContext *PySSL_get_context(PySSLSocket *self, void *closure) {
2194 static int PySSL_set_context(PySSLSocket *self, PyObject *value,
2225 PySSL_get_server_side(PySSLSocket *self, void *c)
2234 PySSL_get_server_hostname(PySSLSocket *self, void *c)
2246 PySSL_get_owner(PySSLSocket *self, void *c)
2259 PySSL_set_owner(PySSLSocket *self, PyObject *value, void *c)
2272 PySSL_traverse(PySSLSocket *self, visitproc visit, void *arg)
2281 PySSL_clear(PySSLSocket *self)
2290 PySSL_dealloc(PySSLSocket *self)
2382 _ssl__SSLSocket_write_impl(PySSLSocket *self, Py_buffer *b)
2489 _ssl__SSLSocket_pending_impl(PySSLSocket *self)
2519 _ssl__SSLSocket_read_impl(PySSLSocket *self, int len, int group_right_1,
2653 _ssl__SSLSocket_shutdown_impl(PySSLSocket *self)
2774 _ssl__SSLSocket_get_channel_binding_impl(PySSLSocket *self,
2814 _ssl__SSLSocket_verify_client_post_handshake_impl(PySSLSocket *self)
2876 PySSL_get_session(PySSLSocket *self, void *closure) {
2912 static int PySSL_set_session(PySSLSocket *self, PyObject *value,
2966 PySSL_get_session_reused(PySSLSocket *self, void *closure) {
3014 sizeof(PySSLSocket), /*tp_basicsize*/
4497 PySSLSocket *ssl;