Since the project beginning, errno values have been used as a return value in many functions because the connector API works as a filesystem OS layer. However, it is probably better that the use of these values is entirely removed.
The idea is to have a small set of error constants to map somehow the used errno values.
Thanks to this, it would be possible to have uploads being truncated and notify the user about this special case but it might be useful in other cases too.
Since the project beginning,
errnovalues have been used as a return value in many functions because the connector API works as a filesystem OS layer. However, it is probably better that the use of these values is entirely removed.The idea is to have a small set of error constants to map somehow the used
errnovalues.Thanks to this, it would be possible to have uploads being truncated and notify the user about this special case but it might be useful in other cases too.