• Home
  • Raw
  • Download

Lines Matching refs:PyModule_AddIntConstant

6114     PyModule_AddIntConstant(m, "SSL_ERROR_ZERO_RETURN",  in PyInit__ssl()
6116 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_READ", in PyInit__ssl()
6118 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_WRITE", in PyInit__ssl()
6120 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_X509_LOOKUP", in PyInit__ssl()
6122 PyModule_AddIntConstant(m, "SSL_ERROR_SYSCALL", in PyInit__ssl()
6124 PyModule_AddIntConstant(m, "SSL_ERROR_SSL", in PyInit__ssl()
6126 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_CONNECT", in PyInit__ssl()
6129 PyModule_AddIntConstant(m, "SSL_ERROR_EOF", in PyInit__ssl()
6131 PyModule_AddIntConstant(m, "SSL_ERROR_INVALID_ERROR_CODE", in PyInit__ssl()
6134 PyModule_AddIntConstant(m, "CERT_NONE", in PyInit__ssl()
6136 PyModule_AddIntConstant(m, "CERT_OPTIONAL", in PyInit__ssl()
6138 PyModule_AddIntConstant(m, "CERT_REQUIRED", in PyInit__ssl()
6141 PyModule_AddIntConstant(m, "VERIFY_DEFAULT", in PyInit__ssl()
6143 PyModule_AddIntConstant(m, "VERIFY_CRL_CHECK_LEAF", in PyInit__ssl()
6145 PyModule_AddIntConstant(m, "VERIFY_CRL_CHECK_CHAIN", in PyInit__ssl()
6147 PyModule_AddIntConstant(m, "VERIFY_X509_STRICT", in PyInit__ssl()
6150 PyModule_AddIntConstant(m, "VERIFY_X509_TRUSTED_FIRST", in PyInit__ssl()
6159 PyModule_AddIntConstant(m, "ALERT_DESCRIPTION_"#s, \ in PyInit__ssl()
6207 PyModule_AddIntConstant(m, "PROTOCOL_SSLv2", in PyInit__ssl()
6211 PyModule_AddIntConstant(m, "PROTOCOL_SSLv3", in PyInit__ssl()
6214 PyModule_AddIntConstant(m, "PROTOCOL_SSLv23", in PyInit__ssl()
6216 PyModule_AddIntConstant(m, "PROTOCOL_TLS", in PyInit__ssl()
6218 PyModule_AddIntConstant(m, "PROTOCOL_TLS_CLIENT", in PyInit__ssl()
6220 PyModule_AddIntConstant(m, "PROTOCOL_TLS_SERVER", in PyInit__ssl()
6222 PyModule_AddIntConstant(m, "PROTOCOL_TLSv1", in PyInit__ssl()
6224 PyModule_AddIntConstant(m, "PROTOCOL_TLSv1_1", in PyInit__ssl()
6226 PyModule_AddIntConstant(m, "PROTOCOL_TLSv1_2", in PyInit__ssl()
6230 PyModule_AddIntConstant(m, "OP_ALL", in PyInit__ssl()
6232 PyModule_AddIntConstant(m, "OP_NO_SSLv2", SSL_OP_NO_SSLv2); in PyInit__ssl()
6233 PyModule_AddIntConstant(m, "OP_NO_SSLv3", SSL_OP_NO_SSLv3); in PyInit__ssl()
6234 PyModule_AddIntConstant(m, "OP_NO_TLSv1", SSL_OP_NO_TLSv1); in PyInit__ssl()
6235 PyModule_AddIntConstant(m, "OP_NO_TLSv1_1", SSL_OP_NO_TLSv1_1); in PyInit__ssl()
6236 PyModule_AddIntConstant(m, "OP_NO_TLSv1_2", SSL_OP_NO_TLSv1_2); in PyInit__ssl()
6238 PyModule_AddIntConstant(m, "OP_NO_TLSv1_3", SSL_OP_NO_TLSv1_3); in PyInit__ssl()
6240 PyModule_AddIntConstant(m, "OP_NO_TLSv1_3", 0); in PyInit__ssl()
6242 PyModule_AddIntConstant(m, "OP_CIPHER_SERVER_PREFERENCE", in PyInit__ssl()
6244 PyModule_AddIntConstant(m, "OP_SINGLE_DH_USE", SSL_OP_SINGLE_DH_USE); in PyInit__ssl()
6245 PyModule_AddIntConstant(m, "OP_NO_TICKET", SSL_OP_NO_TICKET); in PyInit__ssl()
6247 PyModule_AddIntConstant(m, "OP_SINGLE_ECDH_USE", SSL_OP_SINGLE_ECDH_USE); in PyInit__ssl()
6250 PyModule_AddIntConstant(m, "OP_NO_COMPRESSION", in PyInit__ssl()
6254 PyModule_AddIntConstant(m, "OP_ENABLE_MIDDLEBOX_COMPAT", in PyInit__ssl()
6258 PyModule_AddIntConstant(m, "OP_NO_RENEGOTIATION", in PyInit__ssl()
6263 PyModule_AddIntConstant(m, "HOSTFLAG_ALWAYS_CHECK_SUBJECT", in PyInit__ssl()
6267 PyModule_AddIntConstant(m, "HOSTFLAG_NEVER_CHECK_SUBJECT", in PyInit__ssl()
6271 PyModule_AddIntConstant(m, "HOSTFLAG_NO_WILDCARDS", in PyInit__ssl()
6275 PyModule_AddIntConstant(m, "HOSTFLAG_NO_PARTIAL_WILDCARDS", in PyInit__ssl()
6279 PyModule_AddIntConstant(m, "HOSTFLAG_MULTI_LABEL_WILDCARDS", in PyInit__ssl()
6283 PyModule_AddIntConstant(m, "HOSTFLAG_SINGLE_LABEL_SUBDOMAINS", in PyInit__ssl()
6288 PyModule_AddIntConstant(m, "PROTO_MINIMUM_SUPPORTED", in PyInit__ssl()
6290 PyModule_AddIntConstant(m, "PROTO_MAXIMUM_SUPPORTED", in PyInit__ssl()
6292 PyModule_AddIntConstant(m, "PROTO_SSLv3", PY_PROTO_SSLv3); in PyInit__ssl()
6293 PyModule_AddIntConstant(m, "PROTO_TLSv1", PY_PROTO_TLSv1); in PyInit__ssl()
6294 PyModule_AddIntConstant(m, "PROTO_TLSv1_1", PY_PROTO_TLSv1_1); in PyInit__ssl()
6295 PyModule_AddIntConstant(m, "PROTO_TLSv1_2", PY_PROTO_TLSv1_2); in PyInit__ssl()
6296 PyModule_AddIntConstant(m, "PROTO_TLSv1_3", PY_PROTO_TLSv1_3); in PyInit__ssl()