/usr/include/afs/rxgen_consts.h is in libopenafs-dev 1.6.20-2+deb9u2.
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 | /*
* Copyright 2000, International Business Machines Corporation and others.
* All Rights Reserved.
*
* This software has been released under the terms of the IBM Public
* License. For details, see the LICENSE file in the top-level source
* directory or online at http://www.openafs.org/dl/license10.html
*/
#ifndef _RXGEN_CONSTS_
#define _RXGEN_CONSTS_
/* These are some rxgen-based (really arbitrary) error codes... */
#define RXGEN_SUCCESS 0
#define RXGEN_CC_MARSHAL -450
#define RXGEN_CC_UNMARSHAL -451
#define RXGEN_SS_MARSHAL -452
#define RXGEN_SS_UNMARSHAL -453
#define RXGEN_DECODE -454
#define RXGEN_OPCODE -455
#define RXGEN_SS_XDRFREE -456
#define RXGEN_CC_XDRFREE -457
/* These are some rxgen defines */
#define RXGEN_MAKECALL_TIMEOUT 0
#define RXGEN_WAIT 1
#define RXGEN_DONTWAIT 0
#define MAX_PACKAGES 10
#define MAX_FUNCTION_NAME_LEN 200
#define MAX_FUNCTIONS_PER_PACKAGE 500
#define MAX_FUNCTIONS_PER_INTERFACE (MAX_FUNCTIONS_PER_PACKAGE * MAX_PACKAGES)
#endif /* _RXGEN_CONSTS_ */
|