/usr/include/rx/rx_misc.h is in libopenafs-dev 1.6.7-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 | /*
* 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
*/
/*
* rx_misc.h - Various RX configuration macros.
*/
#ifndef _RX_MISC_H_
#define _RX_MISC_H_
#define MISCMTU
#define ADAPT_MTU
#if defined(AFS_SUN5_ENV)
#include <sys/sockio.h>
#include <sys/fcntl.h>
#endif
#if defined(AFS_AIX41_ENV) && defined(KERNEL)
#define PIN(a, b) pin(a, b);
#define UNPIN(a, b) unpin(a, b);
#else
#define PIN(a, b) ;
#define UNPIN(a, b) ;
#endif
/* Include the following to use the lock data base. */
/* #define RX_LOCKS_DB 1 */
/* The lock database uses a file id number and the line number to identify
* where in the code a lock was obtained. Each file containing locks
* has a separate file id called: rxdb_fileID.
*/
#define RXDB_FILE_RX 1 /* rx.c */
#define RXDB_FILE_RX_EVENT 2 /* rx_event.c */
#define RXDB_FILE_RX_PACKET 3 /* rx_packet.c */
#define RXDB_FILE_RX_RDWR 4 /* rx_rdwr.c */
#endif /* _RX_MISC_H_ */
|