swim: encapsulate 'uint16' payload size inside swim.c
uint16 was used in public SWIM C API as a type for payload size to emphasize its small value. But it is not useful in Lua, because Lua API should explicitly check if a number overflows uint16 maximal value, and return the same error as in case it is < uint16_max, but > payload_size_max. So main motivation of the patch is to avoid unnecessary checks in Lua and error message duplication. Internally payload size is still uint16.
Showing
- src/lib/swim/swim.c 4 additions, 4 deletionssrc/lib/swim/swim.c
- src/lib/swim/swim.h 2 additions, 2 deletionssrc/lib/swim/swim.h
- test/unit/swim.c 5 additions, 5 deletionstest/unit/swim.c
- test/unit/swim_test_utils.c 6 additions, 6 deletionstest/unit/swim_test_utils.c
- test/unit/swim_test_utils.h 3 additions, 3 deletionstest/unit/swim_test_utils.h
Loading
Please register or sign in to comment