ObjFW  History of src/tls/OFSecureTransportTLSStream.m of 96c24a6b6c9cd340

History of the file that is called src/tls/OFSecureTransportTLSStream.m at check-in 96c24a6b6c9cd340

2024-04-03
02:16
Change license to LGPLv3 only file: [3c26a85d20] check-in: [7413a728a7] user: js, branch: trunk, size: 7210 [annotate] [blame] [check-ins using] [diff]
2024-02-03
11:41
Update copyright file: [987937a8fa] check-in: [7324ec8590] user: js, branch: 1.0, size: 7445 [annotate] [blame] [check-ins using] [diff]
2024-01-14
11:01
Mbed TLS: Don't hardcode path to CA file file: [57e790b2b8] check-in: [027f5e11cf] user: js, branch: trunk, size: 7002 [annotate] [blame] [check-ins using] [diff]
2024-01-06
00:52
Initial support for Mbed TLS

Mbed TLS is never automatically picked as a TLS implementation and
always needs to be manually enabled using --with-tls=mbedtls. file: [1e41cb22bf] check-in: [11b2a17595] user: js, branch: trunk, size: 6919 [annotate] [blame] [check-ins using] [diff]

2024-01-02
17:17
Update copyright file: [b218de48f5] check-in: [26ddd2e4e4] user: js, branch: trunk, size: 6894 [annotate] [blame] [check-ins using] [diff]
2023-10-15
12:32
Add -[OFStream lowlevelIsAtEndOfStream]

This allows for a much cleaner solution to avoid the internal read
buffer of e.g. a TLS connection never being processed while waiting for
a delimiter. file: [89fd642a80] check-in: [a61e0594b4] user: js, branch: trunk, size: 6894 [annotate] [blame] [check-ins using] [diff]

2023-09-10
12:11
More consistency between TLS implementations

While GnuTLS and SecureTransport haven't shown in practice to need this,
this makes it more robust for future changes in those. In theory, both
could return less data on a read than they have buffered, meaning the
delimiter is not found but in the buffered data, which would then make
them have the same issue OpenSSL had with hanging connections (though
there the problem was that the BIO was not processed and never would
without the same change as in this commit). file: [4775886a79] check-in: [1a3613d573] user: js, branch: trunk, size: 7445 [annotate] [blame] [check-ins using] [diff]

2023-01-06
09:04
Update copyright file: [c722ef4615] check-in: [8939cbdb52] user: js, branch: trunk, size: 6884 [annotate] [blame] [check-ins using] [diff]
2022-12-27
13:58
Rename OFAlready{Connected -> Open}Exception file: [7f23554cd3] check-in: [29a41e5a78] user: js, branch: trunk, size: 6884 [annotate] [blame] [check-ins using] [diff]
2022-02-12
07:46
Update copyright file: [d93ffbbd51] check-in: [1a86b8175b] user: js, branch: trunk, size: 6894 [annotate] [blame] [check-ins using] [diff]
2022-01-28
19:34
Don't assume EWOULDBLOCK and EAGAIN are the same file: [ed55ad491c] check-in: [d9586ed175] user: js, branch: trunk, size: 6894 [annotate] [blame] [check-ins using] [diff]
2021-12-05
17:39
Make Secure Transport work on macOS Leopard file: [30fa947c05] check-in: [50fd2e6e50] user: js, branch: trunk, size: 6852 [annotate] [blame] [check-ins using] [diff]
17:30
Make GCC 4.0 happy again file: [05236b5563] check-in: [57ff42efa2] user: js, branch: trunk, size: 6671 [annotate] [blame] [check-ins using] [diff]
2021-12-04
14:00
Minor cleanup for Secure Transport support file: [b0e8b99bd3] check-in: [d36cd2947f] user: js, branch: trunk, size: 6637 [annotate] [blame] [check-ins using] [diff]
2021-11-21
10:40
OFTLSStream: wrappedStream -> underlyingStream file: [446883c227] check-in: [3ed8cf7a52] user: js, branch: trunk, size: 6676 [annotate] [blame] [check-ins using] [diff]
10:18
OFSecureTransportTLSStream: Fix EWOULDBLOCK file: [e80afd9547] check-in: [8cd4bd9fdd] user: js, branch: trunk, size: 6665 [annotate] [blame] [check-ins using] [diff]
00:30
Add OFGnuTLSTLSStream file: [b4eff5da92] check-in: [6b4dd1f24f] user: js, branch: trunk, size: 6505 [annotate] [blame] [check-ins using] [diff]
2021-11-20
13:18
Renamed src/OFSecureTransportTLSStream.m → src/tls/OFSecureTransportTLSStream.m. Move TLS implementations to a separate library

These implementations all depend on additional libraries that are
otherwise not needed for an ObjFW application that does not use TLS,
meaning they would add unnecessary dependencies for a lot of
applications and waste memory. file: [ce137cf9dc] check-in: [8f8af474fc] user: js, branch: trunk, size: 6464 [annotate] [blame] [check-ins using] [diff]

2021-11-13
21:09
-[OFSecureTransportTLSStream hasDataInReadBuffer] file: [6a4157afd5] check-in: [a3eee50a18] user: js, branch: trunk, size: 6345 [annotate] [blame] [check-ins using] [diff]
20:28
Added: Add OFSecureTransportTLSStream

This implements OFTLSStream using Apple's Secure Transport. While Secure
Transport is declared deprecated by Apple, Apple so far has failed to
provide a suitable replacement. They recommend Network.framework as a
replacement, however it can neither work on arbitrary sockets, nor can
it do STARTTLS. file: [56d8fa21c4] check-in: [112eb62f7b] user: js, branch: trunk, size: 6156 [annotate] [blame] [check-ins using]