This file is indexed.

/usr/include/cfdpops.h is in libion-dev 3.2.1+dfsg-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
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
/*
 *	cfdpops.h:	definitions supporting the implementation
 *			of CFDP standard user operations.
 *
 *
 *	Copyright (c) 2009, California Institute of Technology.
 *	ALL RIGHTS RESERVED.  U.S. Government Sponsorship acknowledged.
 *
 *	Author: Scott Burleigh, JPL
 */

#ifndef _CFDPOPS_H_
#define _CFDPOPS_H_

/*	*	*	CFDP remote services	*	*	*	*/

#ifndef NO_PROXY

typedef struct
{
	char		*sourceFileName;
	char		*destFileName;
	MetadataList	messagesToUser;
	MetadataList	filestoreRequests;
	CfdpHandler	*faultHandlers;			/*	array	*/
	int		unacknowledged;			/*	Boolean	*/
	unsigned int	flowLabelLength;
	unsigned char	*flowLabel;
	int		recordBoundsRespected;		/*	Boolean	*/
} CfdpProxyTask;

extern int	cfdp_rput(CfdpNumber	*respondentEntityNbr,
			unsigned int	utParmsLength,
			unsigned char	*utParms,
			char		*sourceFileName,
			char		*destFileName,
			CfdpReaderFn	readerFn,
			CfdpHandler	*faultHandlers,	/*	array	*/
			unsigned int	flowLabelLength,
			unsigned char	*flowLabel,
			MetadataList	messagesToUser,
			MetadataList	filestoreRequests,
			CfdpNumber	*beneficiaryEntityNbr,
			CfdpProxyTask	*proxyTask,
			CfdpTransactionId *transactionId);

extern int	cfdp_rput_cancel(CfdpNumber *respondentEntityNbr,
			unsigned int	utParmsLength,
			unsigned char	*utParms,
			char		*sourceFileName,
			char		*destFileName,
			CfdpReaderFn	readerFn,
			CfdpHandler	*faultHandlers,	/*	array	*/
			unsigned int	flowLabelLength,
			unsigned char	*flowLabel,
			MetadataList	messagesToUser,
			MetadataList	filestoreRequests,
			CfdpTransactionId *rputTransactionId,
			CfdpTransactionId *transactionId);

extern int	cfdp_get(CfdpNumber	*respondentEntityNbr,
			unsigned int	utParmsLength,
			unsigned char	*utParms,
			char		*sourceFileName,
			char		*destFileName,
			CfdpReaderFn	readerFn,
			CfdpHandler	*faultHandlers,	/*	array	*/
			unsigned int	flowLabelLength,
			unsigned char	*flowLabel,
			MetadataList	messagesToUser,
			MetadataList	filestoreRequests,
			CfdpProxyTask	*retrievalTask,
			CfdpTransactionId *transactionId);
#endif

#ifndef NO_DIRLIST

typedef struct
{
	char		*directoryName;
	char		*destFileName;
} CfdpDirListTask;

extern int	cfdp_rls(CfdpNumber	*respondentEntityNbr,
			unsigned int	utParmsLength,
			unsigned char	*utParms,
			char		*sourceFileName,
			char		*destFileName,
			CfdpReaderFn	readerFn,
			CfdpHandler	*faultHandlers,	/*	array	*/
			unsigned int	flowLabelLength,
			unsigned char	*flowLabel,
			MetadataList	messagesToUser,
			MetadataList	filestoreRequests,
			CfdpDirListTask	*dirListTask,
			CfdpTransactionId *transactionId);
#endif 

#endif