This file is indexed.

/usr/include/ncp/nwfse.h is in libncp-dev 2.2.6-8.

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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
    nwfse.h
    Copyright (C) 2002  Petr Vandrovec

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA


    Revision history:

	1.00  2002, July 21		Petr Vandrovec <vandrove@vc.cvut.cz>
		Initial revision.

 */

#ifndef __NWFSE_H__
#define __NWFSE_H__

#include <ncp/nwcalls.h>

typedef struct {
	u_int32_t	currentServerTime;
	u_int8_t	vconsoleVersion;
	u_int8_t	vconsoleRevision;
} NWSERVER_AND_VCONSOLE_INFO;

#define FSE_LOGGED_IN			0x00000001
#define FSE_BEING_ABORTED		0x00000002
#define FSE_AUDITED			0x00000004
#define FSE_NEEDS_SECURITY_CHANGE	0x00000008
#define FSE_MAC_STATION			0x00000010
#define FSE_AUTHENTICATED_TEMPORARY	0x00000020
#define FSE_AUDIT_CONNECTION_RECORDED	0x00000040
#define FSE_DSAUDIT_CONNECTION_RECORDED	0x00000080

#define FSE_WRITE		1
#define FSE_WRITE_ABORTED	2

#define FSE_NOT_WRITING		0
#define FSE_WRITE_IN_PROGRESS	1
#define FSE_WRITE_BEING_STOPPED	2

#define FSE_NCP_CONNECTION_TYPE		2
#define FSE_NLM_CONNECTION_TYPE		3
#define FSE_AFP_CONNECTION_TYPE		4
#define FSE_FTAM_CONNECTION_TYPE	5
#define FSE_ANCP_CONNECTION_TYPE	6
#define FSE_ACP_CONNECTION_TYPE		7
#define FSE_SMB_CONNECTION_TYPE		8
#define FSE_WINSOCK_CONNECTION_TYPE	9
#define FSE_HTTP_CONNECTION_TYPE	10
#define FSE_UDP_CONNECTION_TYPE		11

typedef struct {
	u_int32_t	connNum;
	u_int32_t	useCount;
	u_int8_t	connServiceType;
	u_int8_t	loginTime[7];
	u_int32_t	status;
	u_int32_t	expirationTime;
	u_int32_t	objType;
	u_int8_t	transactionFlag;
	u_int8_t	logicalLockThreshold;
	u_int8_t	recordLockThreshold;
	u_int8_t	fileWriteFlags;
	u_int8_t	fileWriteState;
	u_int8_t	filler;
	u_int16_t	fileLockCount;
	u_int16_t	recordLockCount;
	u_int64_t	totalBytesRead;
	u_int64_t	totalBytesWritten;
	u_int32_t	totalRequests;
	u_int32_t	heldRequests;
	u_int64_t	heldBytesRead;
	u_int64_t	heldBytesWritten;
} NWUSER_INFO;

typedef struct {
	NWSERVER_AND_VCONSOLE_INFO serverTimeAndVConsoleInfo;
	u_int16_t	reserved;
	NWUSER_INFO userInfo;
} NWFSE_USER_INFO;

#define NWFSE_NLM_NUMS_MAX	130

typedef struct {
	NWSERVER_AND_VCONSOLE_INFO serverTimeAndVConsoleInfo;
	u_int16_t	reserved;
	u_int32_t	numberNLMsLoaded;
	u_int32_t	NLMsInList;
	u_int32_t	NLMNums[NWFSE_NLM_NUMS_MAX];
} NWFSE_NLM_LOADED_LIST;

#ifdef __NWCOMPAT__
typedef NWSERVER_AND_VCONSOLE_INFO SERVER_AND_VCONSOLE_INFO;
typedef NWUSER_INFO USER_INFO;
#define FSE_NLM_NUMS_MAX	NWFSE_NLM_NUMS_MAX
#endif

#ifdef __cplusplus
extern "C" {
#endif

NWCCODE NWGetUserInfo(NWCONN_HANDLE conn, NWCONN_NUM connNum, char *userName, NWFSE_USER_INFO *userInfo);
NWCCODE NWGetNLMLoadedList(NWCONN_HANDLE conn, u_int32_t startNum, NWFSE_NLM_LOADED_LIST *fseNLMLoadedList);

#ifdef __cplusplus
}
#endif

#endif	/* __NWFSE_H__ */