feat: add codecs/warnings module

This commit is contained in:
Shunsuke Shibayama 2024-09-21 21:42:54 +09:00
parent 3366043a2d
commit cdabb2e546
3 changed files with 160 additions and 0 deletions

View file

@ -1,7 +1,31 @@
.OPENSSL_VERSION: Str
.OPENSSL_VERSION_INFO: (Nat, Nat, Nat)
.SSLContext: ClassType
.create_default_context!: () => .SSLContext
.SSLError: ClassType
.SSLError <: OSError
.SSLZeroReturnError: ClassType
.SSLZeroReturnError <: SSLError
.SSLWantReadError: ClassType
.SSLWantReadError <: SSLError
.SSLWantWriteError: ClassType
.SSLWantWriteError <: SSLError
.SSLSyscallError: ClassType
.SSLSyscallError <: SSLError
.SSLEOFError: ClassType
.SSLEOFError <: SSLError
.SSLCertVerificationError: ClassType
.SSLCertVerificationError <: SSLError
.CertificateError = .SSLCertVerificationError
.SSLSocket: ClassType
.SSLSocket <: FileLike!