This file is indexed.

/usr/include/yuma/agt/agt_plock.h is in libyuma-dev 2.10-1build1.

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
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
#ifndef _H_agt_plock
#define _H_agt_plock
/* 

 * Copyright (c) 2008 - 2012, Andy Bierman, All Rights Reserved.
 * All Rights Reserved.
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *

    module ietf-netconf-partial-lock
    revision 2009-10-19

    namespace urn:ietf:params:xml:ns:netconf:partial-lock:1.0
    organization IETF Network Configuration (netconf) Working Group

 */

#include <xmlstring.h>

#ifndef _H_dlq
#include "dlq.h"
#endif

#ifndef _H_ncxtypes
#include "ncxtypes.h"
#endif

#ifndef _H_status
#include "status.h"
#endif

#ifdef __cplusplus
extern "C" {
#endif

#define y_ietf_netconf_partial_lock_M_ietf_netconf_partial_lock \
    (const xmlChar *)"ietf-netconf-partial-lock"
#define y_ietf_netconf_partial_lock_R_ietf_netconf_partial_lock \
    (const xmlChar *)"2009-10-19"

#define y_ietf_netconf_partial_lock_N_lock_id (const xmlChar *)"lock-id"
#define y_ietf_netconf_partial_lock_N_locked_node (const xmlChar *)"locked-node"
#define y_ietf_netconf_partial_lock_N_partial_lock \
    (const xmlChar *)"partial-lock"
#define y_ietf_netconf_partial_lock_N_partial_unlock \
    (const xmlChar *)"partial-unlock"
#define y_ietf_netconf_partial_lock_N_select (const xmlChar *)"select"

/* leaf-list /partial-lock/input/select */
typedef struct y_ietf_netconf_partial_lock_T_partial_lock_input_select_ {
    dlq_hdr_t qhdr;
    xmlChar *myselect;
} y_ietf_netconf_partial_lock_T_partial_lock_input_select;

/* container /partial-lock/input */
typedef struct y_ietf_netconf_partial_lock_T_partial_lock_input_ {
    dlq_hdr_t myselect;
} y_ietf_netconf_partial_lock_T_partial_lock_input;

/* leaf-list /partial-lock/output/locked-node */
typedef struct y_ietf_netconf_partial_lock_T_partial_lock_output_locked_node_ {
    dlq_hdr_t qhdr;
    xmlChar *locked_node;
} y_ietf_netconf_partial_lock_T_partial_lock_output_locked_node;

/* container /partial-lock/output */
typedef struct y_ietf_netconf_partial_lock_T_partial_lock_output_ {
    uint32 lock_id;
    dlq_hdr_t locked_node;
} y_ietf_netconf_partial_lock_T_partial_lock_output;

/* container /partial-unlock/input */
typedef struct y_ietf_netconf_partial_lock_T_partial_unlock_input_ {
    uint32 lock_id;
} y_ietf_netconf_partial_lock_T_partial_unlock_input;
/* ietf-netconf-partial-lock module init 1 */
extern status_t
    y_ietf_netconf_partial_lock_init (
        const xmlChar *modname,
        const xmlChar *revision);

/* ietf-netconf-partial-lock module init 2 */
extern status_t
    y_ietf_netconf_partial_lock_init2 (void);

/* ietf-netconf-partial-lock module cleanup */
extern void
    y_ietf_netconf_partial_lock_cleanup (void);

#ifdef __cplusplus
}  /* end extern 'C' */
#endif

#endif