SSL_MODE_ENABLE_PARTIAL_WRITE

Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success when just a single record has been written):

extern (C) nothrow @nogc
enum SSL_MODE_ENABLE_PARTIAL_WRITE = 0x00000001L;

Meta