]> git.ipfire.org Git - thirdparty/FORT-validator.git/commit
Enumerate some errcode-adjacent function results
authorAlberto Leiva Popper <ydahhrk@gmail.com>
Tue, 13 May 2025 02:48:07 +0000 (20:48 -0600)
committerAlberto Leiva Popper <ydahhrk@gmail.com>
Tue, 13 May 2025 02:48:07 +0000 (20:48 -0600)
commit50eeaa5032e19ae26ab62368f154c284f2dcbe4c
treebb4659bed0d2ded144bfc5459dad50fcfc719a9c
parentad9fd04e63ee5f6a023f2c5d2782270995bd744d
Enumerate some errcode-adjacent function results

To reduce review friction; clarify when result codes matter, force
callers to worry about them, and prevent them from getting jumbled with
other error code types.

(In particular, the cache code was returning `EBUSY` to signal rsync
deferral. Since the code frequently propagates errno, it risked regular
standard library `EBUSY`s being mistaken by rsync deferrals.)

Also, remove negative error codes when they're not needed. (Though
error codes themselves are steadily becoming slop.)
70 files changed:
src/asn1/decode.c
src/asn1/oid.c
src/asn1/signed_data.c
src/cache.c
src/cache.h
src/common.c
src/common.h
src/config.c
src/config/time.c
src/config/uint.c
src/ext.c
src/file.c
src/file.h
src/hash.c
src/http.c
src/init.c
src/json_handler.c
src/json_util.c
src/log.c
src/main.c
src/nid.c
src/object/certificate.c
src/object/certificate.h
src/object/manifest.c
src/object/tal.c
src/object/vcard.c
src/print_file.c
src/resource.c
src/resource/asn.c
src/resource/asn.h
src/resource/ip4.c
src/resource/ip4.h
src/resource/ip6.c
src/resource/ip6.h
src/rrdp.c
src/rsync.c
src/rtr/db/db_table.c
src/rtr/db/deltas_array.c
src/rtr/db/vrps.c
src/rtr/db/vrps.h
src/rtr/err_pdu.c
src/rtr/pdu_handler.c
src/rtr/pdu_handler.h
src/rtr/pdu_sender.c
src/rtr/rtr.c
src/slurm/db_slurm.c
src/slurm/slurm_loader.c
src/slurm/slurm_parser.c
src/stream.c
src/thread_pool.c
src/thread_var.c
src/types/address.c
src/types/sorted_array.c
src/types/sorted_array.h
src/types/str.c
src/types/uri.c
test/Makefile.am
test/cache_test.c
test/cache_util.c
test/hash_test.c
test/mock.c
test/object/manifest_test.c
test/object/tal_test.c
test/rrdp_test.c
test/rtr/db/deltas_array_test.c
test/rtr/db/vrps_test.c
test/rtr/pdu_handler_test.c
test/types/address_test.c
test/vcard_test.c
test/xml_test.c