Open
Description
It's common for C APIs to define constant values to denote the "last" value in a set of constants, like ELAST
or IPPROTO_MAX
. This seems prone to weird bugs, and these constants provide very marginal benefit to Rust programmers. Since we're considering some breakage anyways, we should just remove these values where we are made aware of them.
See: