summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_openssl.c
diff options
context:
space:
mode:
authorAndrew Clayton <a.clayton@nginx.com>2023-03-23 16:44:26 +0000
committerAndrew Clayton <a.clayton@nginx.com>2023-03-28 23:15:28 +0100
commitf20172e5959d2029fdc7f084a332a748563dd50e (patch)
tree2ef7f8fd1c80cd15653a6964d0a3a30ab2166fee /src/nxt_openssl.c
parent9b848c515ed9b72625c835c2eda1c0278892e97c (diff)
downloadunit-f20172e5959d2029fdc7f084a332a748563dd50e.tar.gz
unit-f20172e5959d2029fdc7f084a332a748563dd50e.tar.bz2
Change nxt_bool_t from a nxt_uint_t to a uint8_t.
We have a 'bool' type, nxt_bool_t which is defined as a nxt_uint_t, that is used as local variables, and function return types and arguments. However in structs we use a uint8_t, due to not wanting to waste memory in structures, but the use of uint8_t in structs is confusing and unintuitive. We could just switch to using the C99 _Bool type, however there are concerns about this possibly not always being 1-byte on platforms on which Unit runs and might mess with structure layouts. (Switching to _Bool as the underlying type is still an eventual goal) The alternative is to just make our nxt_bool_t be a uint8_t. Reviewed-by: Alejandro Colomar <alx@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'src/nxt_openssl.c')
0 files changed, 0 insertions, 0 deletions