This file is indexed.

/usr/include/atmsap.h is in libatm1-dev 1:2.5.1-1.5.

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
/* atmsap.h - ATM Service Access Point addressing definitions */

/* Written 1996-1998 by Werner Almesberger, EPFL LRC/ICA */


#ifndef _ATMSAP_H
#define _ATMSAP_H

#include <stdint.h>
#include <linux/atmsap.h>

#ifdef __cplusplus
extern "C" {
#endif

/*
 * Selected ISO/IEC TR 9577 Network Layer Protocol Identifiers (NLPID)
 */

#define NLPID_IEEE802_1_SNAP	0x80	/* IEEE 802.1 SNAP */

/*
 * Selected Organizationally Unique Identifiers (OUIs)
 */

#define ATM_FORUM_OUI		"\x00\xA0\x3E"	/* ATM Forum */
#define EPFL_OUI		"\x00\x60\xD7"	/* EPF Lausanne, CH */

/*
 * Selected vendor-specific application identifiers (for B-HLI). Such an
 * identifier consists of three bytes containing the OUI, followed by four
 * bytes assigned by the organization owning the OUI.
 */

#define ANS_HLT_VS_ID		ATM_FORUM_OUI "\x00\x00\x00\x01"
					 /* ATM Name System, af-saa-0069.000 */
#define VOD_HLT_VS_ID		ATM_FORUM_OUI "\x00\x00\x00\x02"
						     /* VoD, af-saa-0049.001 */
#define AREQUIPA_HLT_VS_ID	EPFL_OUI "\x01\x00\x00\x01"	/* Arequipa  */
#define TTCP_HLT_VS_ID		EPFL_OUI "\x01\x00\x00\x03"	/* ttcp_atm */


/* Mapping of "well-known" TCP, UDP, etc. port numbers to ATM BHLIs.
   btd-saa-api-bhli-01.02 */

void atm_tcpip_port_mapping(char *vs_id,uint8_t protocol,uint16_t port);

#ifdef __cplusplus
};
#endif

#endif