This file is indexed.

/usr/include/rsbac/repl_types.h is in librsbac-dev 1.4.0-repack-0ubuntu6.

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
/*************************************************** */
/* Rule Set Based Access Control                     */
/* Author and (c) 1999-2005: Amon Ott <ao@rsbac.org> */
/* Generic lists - internal structures               */
/* Last modified: 04/Apr/2005                        */
/*************************************************** */

#ifndef __RSBAC_REPL_TYPES_H
#define __RSBAC_REPL_TYPES_H

#include <rsbac/types.h>

#define RSBAC_LIST_REPL_NAME_LEN 16
#define RSBAC_LIST_REPL_CRYPTKEY_LEN 256
#define RSBAC_LIST_REPL_CRYPTALGO_LEN 64

typedef __u32 rsbac_list_repl_partner_number_t;

struct rsbac_list_repl_partner_entry_t
  {
    char          name[RSBAC_LIST_REPL_NAME_LEN];
    __u32         ip_addr;
    char          crypt_algo[RSBAC_LIST_REPL_CRYPTALGO_LEN];
    char          crypt_key[RSBAC_LIST_REPL_CRYPTKEY_LEN];
    __u32         crypt_key_len;
  };

#endif