blob: 5cb69f7e0304ad2c55fefc2567527fa83f13b429 [file] [log] [blame]
Jeff Thompson8b666002013-07-08 01:16:26 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
4 */
5
6#include "errors.h"
7
8char *ndn_getErrorString(int error)
9{
10 switch (error) {
11 case NDN_ERROR_success:
12 return "success";
13 case NDN_ERROR_element_of_value_is_not_a_decimal_digit:
14 return "element of value is not a decimal digit";
15 case NDN_ERROR_read_past_the_end_of_the_input:
16 return "read past the end of the input";
17 case NDN_ERROR_the_first_header_octet_may_not_be_zero:
18 return "the first header octet may not be zero";
19 case NDN_ERROR_header_type_is_not_a_DTAG:
20 return "header type is not a DTAG";
21 case NDN_ERROR_did_not_get_the_expected_DTAG:
22 return "did not get the expected DTAG";
23 case NDN_ERROR_did_not_get_the_expected_element_close:
24 return "did not get the expected element close";
25 case NDN_ERROR_item_is_not_UDATA:
26 return "item is not UDATA";
27 case NDN_ERROR_header_type_is_out_of_range:
28 return "header type is out of range";
29 case NDN_ERROR_encodeTypeAndValue_miscalculated_N_encoding_bytes:
30 return "encodeTypeAndValue miscalculated N encoding bytes";
31 case NDN_ERROR_read_a_component_past_the_maximum_number_of_components_allowed_in_the_name:
32 return "read a component past the maximum number of components allowed in the name";
33 case NDN_ERROR_findElementEnd_unexpected_close_tag:
34 return "findElementEnd unexpected close tag";
35 case NDN_ERROR_cannot_store_more_header_bytes_than_the_size_of_headerBuffer:
36 return "cannot store more header bytes than the size of headerBuffer";
37 case NDN_ERROR_findElementEnd_cannot_read_header_type_and_value:
38 return "findElementEnd cannot read header type and value";
39 case NDN_ERROR_findElementEnd_unrecognized_header_type:
40 return "findElementEnd unrecognized header type";
41 case NDN_ERROR_findElementEnd_unrecognized_state:
42 return "findElementEnd unrecognized state";
43 case NDN_ERROR_DynamicUCharArray_realloc_function_pointer_not_supplied:
44 return "DynamicUCharArray realloc function pointer not supplied";
45 case NDN_ERROR_DynamicUCharArray_realloc_failed:
46 return "DynamicUCharArray realloc failed";
47 default:
48 return "unrecognized ndn_Error code";
49 }
50}