2011-11-13 00:38:58 +01:00
|
|
|
/* debmask.h: 23-Jul-97 */
|
2011-11-13 00:38:58 +01:00
|
|
|
#ifndef _DEBMASK_H_
|
|
|
|
#define _DEBMASK_H_
|
|
|
|
/*
|
|
|
|
* several debug masks.
|
|
|
|
* second paramter in debug entries 100 .. 1xx
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* NWCONN */
|
2011-11-13 00:38:58 +01:00
|
|
|
#define D_FH_OPEN 1 /* file open/close */
|
|
|
|
#define D_FH_LOCK 2 /* file lock/unlock */
|
|
|
|
#define D_FH_FLUSH 4 /* file flushes */
|
2011-11-13 00:38:58 +01:00
|
|
|
|
2011-11-13 00:38:58 +01:00
|
|
|
#define D_FN_NAMES 8
|
|
|
|
#define D_FN_SEARCH 0x10 /* file search */
|
2011-11-13 00:38:58 +01:00
|
|
|
|
2011-11-13 00:38:59 +01:00
|
|
|
#define D_ACCESS 0x20 /* access rights */
|
|
|
|
#define D_TRUSTEES 0x40 /* trustees */
|
2011-11-13 00:38:59 +01:00
|
|
|
|
|
|
|
/* NWBIND */
|
|
|
|
#define D_BIND_REQ 0x8000 /* all Requests */
|
|
|
|
|
2011-11-13 00:38:58 +01:00
|
|
|
#endif
|
|
|
|
|