blob: a5b05108359769945ee1eb732223c5486d815ea0 [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";
Jeff Thompsonf3263612013-07-09 12:23:36 -070033 case NDN_ERROR_read_an_entry_past_the_maximum_number_of_entries_allowed_in_the_exclude:
34 return "read an entry past the maximum number of entries allowed in the exclude";
Jeff Thompson8b666002013-07-08 01:16:26 -070035 case NDN_ERROR_findElementEnd_unexpected_close_tag:
36 return "findElementEnd unexpected close tag";
37 case NDN_ERROR_cannot_store_more_header_bytes_than_the_size_of_headerBuffer:
38 return "cannot store more header bytes than the size of headerBuffer";
39 case NDN_ERROR_findElementEnd_cannot_read_header_type_and_value:
40 return "findElementEnd cannot read header type and value";
41 case NDN_ERROR_findElementEnd_unrecognized_header_type:
42 return "findElementEnd unrecognized header type";
43 case NDN_ERROR_findElementEnd_unrecognized_state:
44 return "findElementEnd unrecognized state";
45 case NDN_ERROR_DynamicUCharArray_realloc_function_pointer_not_supplied:
46 return "DynamicUCharArray realloc function pointer not supplied";
47 case NDN_ERROR_DynamicUCharArray_realloc_failed:
48 return "DynamicUCharArray realloc failed";
Jeff Thompsonf2e9aa02013-07-09 12:13:09 -070049 case NDN_ERROR_unrecognized_ndn_ExcludeType:
50 return "unrecognized ndn_ExcludeType";
Jeff Thompson07029ec2013-07-11 11:12:44 -070051 case NDN_ERROR_unrecognized_ndn_KeyLocatorType:
52 return "unrecognized ndn_KeyLocatorType";
Jeff Thompsonf0fea002013-07-30 17:22:42 -070053 case NDN_ERROR_decodeBinaryXmlKeyLocator_unrecognized_key_locator_type:
54 return "decodeBinaryXmlKeyLocator unrecognized key locator type";
Jeff Thompson0aa754a2013-07-17 17:42:28 -070055 case NDN_ERROR_unrecognized_ndn_SocketTransport:
56 return "unrecognized ndn_SocketTransport";
57 case NDN_ERROR_SocketTransport_error_in_getaddrinfo:
58 return "SocketTransport error in getaddrinfo";
59 case NDN_ERROR_SocketTransport_cannot_connect_to_socket:
60 return "SocketTransport cannot connect to socket";
61 case NDN_ERROR_SocketTransport_socket_is_not_open:
62 return "SocketTransport socket is not open";
63 case NDN_ERROR_SocketTransport_error_in_send:
64 return "SocketTransport error in send";
65 case NDN_ERROR_SocketTransport_error_in_recv:
66 return "SocketTransport error in recv";
Jeff Thompson57963882013-08-05 16:01:25 -070067 case NDN_ERROR_SocketTransport_error_in_close:
68 return "SocketTransport error in close";
Jeff Thompson8b666002013-07-08 01:16:26 -070069 default:
70 return "unrecognized ndn_Error code";
71 }
72}