/srv/osrm/osrm-backend/include/osrm
NameSizeModeActions
approach.hpp14420644editdlrm
bearing.hpp14380644editdlrm
contractor.hpp17610644editdlrm
contractor_config.hpp14890644editdlrm
coordinate.hpp16230644editdlrm
customizer.hpp17390644editdlrm
customizer_config.hpp14920644editdlrm
engine_config.hpp14650644editdlrm
error_codes.hpp10100644editdlrm
exception.hpp14900644editdlrm
extractor.hpp17440644editdlrm
extractor_config.hpp14830644editdlrm
json_container.hpp14700644editdlrm
match_parameters.hpp14860644editdlrm
nearest_parameters.hpp14940644editdlrm
osrm.hpp53600644editdlrm
osrm_fwd.hpp18780644editdlrm
partitioner.hpp17450644editdlrm
partitioner_config.hpp14990644editdlrm
route_parameters.hpp14860644editdlrm
status.hpp14340644editdlrm
storage_config.hpp14710644editdlrm
table_parameters.hpp14860644editdlrm
tile_parameters.hpp14820644editdlrm
trip_parameters.hpp14820644editdlrm
Edit: /srv/osrm/osrm-backend/include/osrm/error_codes.hpp (1010B)
#ifndef OSRM_ERRORCODES_HPP #define OSRM_ERRORCODES_HPP #include namespace osrm { /** * Various error codes that can be returned by OSRM internal functions. * Note: often, these translate into return codes from `int main()` functions. * Thus, do not change the order - if adding new codes, append them to the * end, so the code values do not change for users that are checking for * certain values. */ enum ErrorCode { InvalidFingerprint = 2, // Start at 2 to avoid colliding with POSIX EXIT_FAILURE IncompatibleFileVersion, FileOpenError, FileReadError, FileWriteError, FileIOError, UnexpectedEndOfFile, IncompatibleDataset, UnknownAlgorithm #ifndef NDEBUG // Leave this at the end. In debug mode, we assert that the size of // this enum matches the number of messages we have documented, and __ENDMARKER__ // is used as the "count" value. , __ENDMARKER__ #endif }; } // namespace osrm #endif // OSRM_ERRORCODES_HPP