| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | args: Convert nng_opts_parse into a header only library using `nng_args_parse`. | Garrett D'Amore | 2025-01-04 |
| | | | | | | | | | The API is identical, except that some names have changed, and this is now a header library in `nng/args.h` - so the core library does not need to carry this code in binaries. Being a header library also means it is not necessary to link against NNG, and it does not include any parts of NNG; it only depends on a standard C99 or C11 environment. | ||
| * | aio: introduce NNG_ESTOPPED | Garrett D'Amore | 2024-12-26 |
| | | | | | | | | | | | | This error code results when an AIO is stopped permanently, as a result of nni_aio_close or nni_aio_stop. The associated AIO object cannot be used again. This discrimantes against a file being closed, or a temporary cancellation which might allow the aio to be reused. Consumers must check for this error status in their callbacks, and not resubmit an operation that failed with this error. Doing so, will result in an infinite loop of submit / errors. | ||
| * | docs: document error codes | Garrett D'Amore | 2024-10-23 |
