| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
We don't use that info for anything, and it generates unnecessary diffs
every time we bump the minor version (and CI failures if we forget to
sync some files from opt-in modules (mono, text_server_fb).
|
|
|
|
| |
Keep on waitin'
|
| |
|
| |
|
|
|
|
| |
Can't stop, won't stop, they said, huh?
|
|
|
|
|
|
| |
And include #72377.
Co-authored-by: Wiktor Kocielski <withaust@gmail.com>
|
|
|
|
|
|
|
|
|
| |
Which was unused internally, and can be replaced by:
```
while tls.get_status() == tls.STATUS_HANDSHAKING:
tls.poll()
```
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Use a TLSOptions configuration object which is created via static
functions.
- "TLSOptions.client": uses the standard CA and common name verification.
- "TLSOptions.client_unsafe": uses optional CA verification (i.e. if specified)
- "TLSOptions.server": is the standard server configuration (chain + key)
This will allow us to expand the TLS configuration options to include
e.g. mutual authentication without bloating the classes that uses
StreamPeerTLS and PacketPeerDTLS as underlying peers.
|
| |
|
|
SSL has been deprectated almost 10 years ago.
|