This file is indexed.

/usr/include/osp/ospcode.h is in libosptk3-dev 3.4.2-1.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**************************************************************************
*** COPYRIGHT (c) 2002 by TransNexus, Inc.                              ***
***                                                                     ***
*** This software is property of TransNexus, Inc.                       ***
*** This software is freely available under license from TransNexus.    ***
*** The license terms and conditions for free use of this software by   ***
*** third parties are defined in the OSP Toolkit Software License       ***
*** Agreement (LICENSE.txt).  Any use of this software by third         ***
*** parties, which does not comply with the terms and conditions of the ***
*** OSP Toolkit Software License Agreement is prohibited without        ***
*** the prior, express, written consent of TransNexus, Inc.             ***
***                                                                     ***
*** Thank you for using the OSP ToolKit(TM).  Please report any bugs,   ***
*** suggestions or feedback to support@transnexus.com                   ***
***                                                                     ***
**************************************************************************/







/*
 * ospcode.h - Status codes and strings for status element
 */
#ifndef _OSPCODE_H
#define _OSPCODE_H


typedef struct statuscode{
    unsigned ospmCode;
    unsigned char *ospmDesc;
}OSPTSTATLIST;

#define MAX_STATS   23

OSPTSTATLIST statlist[23] = {
/*2xx  =  operation successful*/
    {200, "success"},
    {201, "information created"},
    {210, "updated information accepted"},
/*4xx  =  client error*/
    {400, "bad request"},
    {401, "unauthorised"},
    {410, "character encoding not supported"},
    {411, "parsing unsuccessful"},
    {412, "critical element not supported"},
    {420, "generic security problem"},
    {421, "signature invalid"},
    {422, "cryptographic algorithm not supported"},
    {423, "certificate invalid"},
    {424, "certificate revoked"},
    {425, "encryption required"},
/*5xx  =  server error*/
    {500, "internal server error"},
    {501, "not implemented"},
    {503, "service not available},
    {510, "transient problem in server},
    {520, "long term problem in server},
    {530, "time problem"}
    {531, "valid time too soon"},
    {532, "time interval too small"},
    {999, "generic failure"}
    };


#endif