/usr/include/sipxtapi/resparse/res_info.h is in libsipxtapi-dev 3.3.0~test17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | /*
* DNS Resource record manipulation routines
*
* Translation routines - internal use only
# (i.e. undocumented!)
*
* Dave Shield November 1993
*/
#ifndef INCLUDE_RES_INFO_H
#define INCLUDE_RES_INFO_H
#ifdef __cplusplus
extern "C" {
#endif
extern const char * res_error_str(void);
extern const char * res_opcode(int i);
extern const char * res_rcode(int i);
extern const char * res_wks(int i);
extern const char * res_proto(int i);
extern const char * res_type(int i);
extern int which_res_type(const char* s);
extern const char * res_class(int i);
extern const char * res_time(int i);
#ifdef __cplusplus
}
#endif
#endif /* INCLUDE_RES_INFO_H */
|