Indy
Indy copied to clipboard
Indy - Internet Direct
Not all FTP servers are configured correctly. When a client performs a Passive transfer, the server may respond with an IP address that the client cannot reach (ie, a private...
Hi, Open SSL API (Version 1.1 and more) functions evolve and : - OpenSSL_add_all_ciphers ; - OpenSSL_add_all_digests ; **are deprecated !**. They was replace by OPENSSL_init_crypto. There's another API functions...
When handling bytestring conversions, Indy currently relies on external libraries to handle charsets other than ASCII and UTFs. On Windows, the Win32 `MultiByteToWideChar()` and `WideCharToMultiByte` functions are used. On POSIX...
When an `SSLIOHandler` is assigned to a `TIdCustomTCPServer`-derived server, the server needs to know which `Bindings` port(s) require an implicit SSL/TLS handshake to be performed immediately upon a client connecting...
Provide DKIM support in TIdSMTP
`TIdTCPServer` has `StartListening()` and `StopListening()` methods, which allows users to start/stop TCP listening without fully (de)activating the server. This is useful if the user wants to add/modify listening ports without...
See https://tools.ietf.org/html/rfc7413. TCP Fast Open requires OS support, and both client and server must enable TFO on all listening/connecting sockets involved. Windows: - TFO is supported in Windows 10 v1607...
Enhance TIdDNSResolver to allow DNS query over TCP, HTTPS and TLS.
Add support for calling user-defined methods during TLS Client Hello negotiation, so that Encrypted SNI can be supported.
From https://www.atozed.com/forums/showthread.php?tid=855&pid=2489#pid2489: > In conjunction with this, i have a feature request: Since it is very hard to dive into the deep of TLS processing (for non Remy's ^^), it...