Lines Matching refs:PySSLSocket
338 } PySSLSocket; typedef
343 static PyObject *PySSL_SSLwrite(PySSLSocket *self, PyObject *args);
344 static PyObject *PySSL_SSLread(PySSLSocket *self, PyObject *args);
347 static PyObject *PySSL_peercert(PySSLSocket *self, PyObject *args);
348 static PyObject *PySSL_cipher(PySSLSocket *self);
474 PySSL_SetError(PySSLSocket *obj, int ret, char *filename, int lineno) in PySSL_SetError()
571 static PySSLSocket *
576 PySSLSocket *self; in newPySSLSocket()
580 self = PyObject_New(PySSLSocket, &PySSLSocket_Type); in newPySSLSocket()
680 static PyObject *PySSL_SSLdo_handshake(PySSLSocket *self) in PySSL_SSLdo_handshake()
1486 PySSL_peercert(PySSLSocket *self, PyObject *args) in PySSL_peercert()
1530 static PyObject *PySSL_cipher (PySSLSocket *self) { in PySSL_cipher()
1578 static PyObject *PySSL_version(PySSLSocket *self) in PySSL_version()
1591 static PyObject *PySSL_selected_npn_protocol(PySSLSocket *self) { in PySSL_selected_npn_protocol()
1605 static PyObject *PySSL_selected_alpn_protocol(PySSLSocket *self) { in PySSL_selected_alpn_protocol()
1617 static PyObject *PySSL_compression(PySSLSocket *self) { in PySSL_compression()
1636 static PySSLContext *PySSL_get_context(PySSLSocket *self, void *closure) { in PySSL_get_context()
1641 static int PySSL_set_context(PySSLSocket *self, PyObject *value, in PySSL_set_context()
1672 static void PySSL_dealloc(PySSLSocket *self) in PySSL_dealloc()
1752 static PyObject *PySSL_SSLwrite(PySSLSocket *self, PyObject *args) in PySSL_SSLwrite()
1840 static PyObject *PySSL_SSLpending(PySSLSocket *self) in PySSL_SSLpending()
1859 static PyObject *PySSL_SSLread(PySSLSocket *self, PyObject *args) in PySSL_SSLread()
1972 static PyObject *PySSL_SSLshutdown(PySSLSocket *self) in PySSL_SSLshutdown()
2067 PySSL_tls_unique_cb(PySSLSocket *self) in PySSL_tls_unique_cb()
2137 sizeof(PySSLSocket), /*tp_basicsize*/
3217 PySSLSocket *ssl; in _servername_callback()