Name |
Last commit
|
Last update |
---|---|---|
.. | ||
mbedtls.c | ||
mbedtls.h | ||
openssl.c | ||
openssl.h | ||
registry.c | ||
registry.h | ||
socket.c | ||
socket.h | ||
stransport.c | ||
stransport.h | ||
tls.c | ||
tls.h |
Our `openssl_write` function calls `SSL_write` by passing in both `data` and `len` arguments directly. Thing is, our `len` parameter is of type `size_t` and theirs is of type `int`. We thus need to clamp our length to be at most `INT_MAX`.
Name |
Last commit
|
Last update |
---|---|---|
.. | ||
mbedtls.c | Loading commit data... | |
mbedtls.h | Loading commit data... | |
openssl.c | Loading commit data... | |
openssl.h | Loading commit data... | |
registry.c | Loading commit data... | |
registry.h | Loading commit data... | |
socket.c | Loading commit data... | |
socket.h | Loading commit data... | |
stransport.c | Loading commit data... | |
stransport.h | Loading commit data... | |
tls.c | Loading commit data... | |
tls.h | Loading commit data... |