• Home
  • Raw
  • Download

Lines Matching refs:PyModule_AddIntConstant

6077     PyModule_AddIntConstant(m, "SSL_ERROR_ZERO_RETURN",  in PyInit__ssl()
6079 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_READ", in PyInit__ssl()
6081 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_WRITE", in PyInit__ssl()
6083 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_X509_LOOKUP", in PyInit__ssl()
6085 PyModule_AddIntConstant(m, "SSL_ERROR_SYSCALL", in PyInit__ssl()
6087 PyModule_AddIntConstant(m, "SSL_ERROR_SSL", in PyInit__ssl()
6089 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_CONNECT", in PyInit__ssl()
6092 PyModule_AddIntConstant(m, "SSL_ERROR_EOF", in PyInit__ssl()
6094 PyModule_AddIntConstant(m, "SSL_ERROR_INVALID_ERROR_CODE", in PyInit__ssl()
6097 PyModule_AddIntConstant(m, "CERT_NONE", in PyInit__ssl()
6099 PyModule_AddIntConstant(m, "CERT_OPTIONAL", in PyInit__ssl()
6101 PyModule_AddIntConstant(m, "CERT_REQUIRED", in PyInit__ssl()
6104 PyModule_AddIntConstant(m, "VERIFY_DEFAULT", in PyInit__ssl()
6106 PyModule_AddIntConstant(m, "VERIFY_CRL_CHECK_LEAF", in PyInit__ssl()
6108 PyModule_AddIntConstant(m, "VERIFY_CRL_CHECK_CHAIN", in PyInit__ssl()
6110 PyModule_AddIntConstant(m, "VERIFY_X509_STRICT", in PyInit__ssl()
6113 PyModule_AddIntConstant(m, "VERIFY_X509_TRUSTED_FIRST", in PyInit__ssl()
6122 PyModule_AddIntConstant(m, "ALERT_DESCRIPTION_"#s, \ in PyInit__ssl()
6170 PyModule_AddIntConstant(m, "PROTOCOL_SSLv2", in PyInit__ssl()
6174 PyModule_AddIntConstant(m, "PROTOCOL_SSLv3", in PyInit__ssl()
6177 PyModule_AddIntConstant(m, "PROTOCOL_SSLv23", in PyInit__ssl()
6179 PyModule_AddIntConstant(m, "PROTOCOL_TLS", in PyInit__ssl()
6181 PyModule_AddIntConstant(m, "PROTOCOL_TLS_CLIENT", in PyInit__ssl()
6183 PyModule_AddIntConstant(m, "PROTOCOL_TLS_SERVER", in PyInit__ssl()
6185 PyModule_AddIntConstant(m, "PROTOCOL_TLSv1", in PyInit__ssl()
6188 PyModule_AddIntConstant(m, "PROTOCOL_TLSv1_1", in PyInit__ssl()
6190 PyModule_AddIntConstant(m, "PROTOCOL_TLSv1_2", in PyInit__ssl()
6195 PyModule_AddIntConstant(m, "OP_ALL", in PyInit__ssl()
6197 PyModule_AddIntConstant(m, "OP_NO_SSLv2", SSL_OP_NO_SSLv2); in PyInit__ssl()
6198 PyModule_AddIntConstant(m, "OP_NO_SSLv3", SSL_OP_NO_SSLv3); in PyInit__ssl()
6199 PyModule_AddIntConstant(m, "OP_NO_TLSv1", SSL_OP_NO_TLSv1); in PyInit__ssl()
6201 PyModule_AddIntConstant(m, "OP_NO_TLSv1_1", SSL_OP_NO_TLSv1_1); in PyInit__ssl()
6202 PyModule_AddIntConstant(m, "OP_NO_TLSv1_2", SSL_OP_NO_TLSv1_2); in PyInit__ssl()
6205 PyModule_AddIntConstant(m, "OP_NO_TLSv1_3", SSL_OP_NO_TLSv1_3); in PyInit__ssl()
6207 PyModule_AddIntConstant(m, "OP_NO_TLSv1_3", 0); in PyInit__ssl()
6209 PyModule_AddIntConstant(m, "OP_CIPHER_SERVER_PREFERENCE", in PyInit__ssl()
6211 PyModule_AddIntConstant(m, "OP_SINGLE_DH_USE", SSL_OP_SINGLE_DH_USE); in PyInit__ssl()
6212 PyModule_AddIntConstant(m, "OP_NO_TICKET", SSL_OP_NO_TICKET); in PyInit__ssl()
6214 PyModule_AddIntConstant(m, "OP_SINGLE_ECDH_USE", SSL_OP_SINGLE_ECDH_USE); in PyInit__ssl()
6217 PyModule_AddIntConstant(m, "OP_NO_COMPRESSION", in PyInit__ssl()
6221 PyModule_AddIntConstant(m, "OP_ENABLE_MIDDLEBOX_COMPAT", in PyInit__ssl()
6225 PyModule_AddIntConstant(m, "OP_NO_RENEGOTIATION", in PyInit__ssl()
6230 PyModule_AddIntConstant(m, "HOSTFLAG_ALWAYS_CHECK_SUBJECT", in PyInit__ssl()
6234 PyModule_AddIntConstant(m, "HOSTFLAG_NEVER_CHECK_SUBJECT", in PyInit__ssl()
6238 PyModule_AddIntConstant(m, "HOSTFLAG_NO_WILDCARDS", in PyInit__ssl()
6242 PyModule_AddIntConstant(m, "HOSTFLAG_NO_PARTIAL_WILDCARDS", in PyInit__ssl()
6246 PyModule_AddIntConstant(m, "HOSTFLAG_MULTI_LABEL_WILDCARDS", in PyInit__ssl()
6250 PyModule_AddIntConstant(m, "HOSTFLAG_SINGLE_LABEL_SUBDOMAINS", in PyInit__ssl()
6255 PyModule_AddIntConstant(m, "PROTO_MINIMUM_SUPPORTED", in PyInit__ssl()
6257 PyModule_AddIntConstant(m, "PROTO_MAXIMUM_SUPPORTED", in PyInit__ssl()
6259 PyModule_AddIntConstant(m, "PROTO_SSLv3", PY_PROTO_SSLv3); in PyInit__ssl()
6260 PyModule_AddIntConstant(m, "PROTO_TLSv1", PY_PROTO_TLSv1); in PyInit__ssl()
6261 PyModule_AddIntConstant(m, "PROTO_TLSv1_1", PY_PROTO_TLSv1_1); in PyInit__ssl()
6262 PyModule_AddIntConstant(m, "PROTO_TLSv1_2", PY_PROTO_TLSv1_2); in PyInit__ssl()
6263 PyModule_AddIntConstant(m, "PROTO_TLSv1_3", PY_PROTO_TLSv1_3); in PyInit__ssl()