42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* This file is part of mars_nwe.
|
|
*
|
|
* Copyright (C) 1993-2000 Martin Stover, Marburg, Germany
|
|
* Copyright (C) 2026 Mario Fetka
|
|
*
|
|
* 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; version 2 only.
|
|
*
|
|
* 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.
|
|
*/
|
|
/* debmask.h: 23-Jul-97 */
|
|
#ifndef _DEBMASK_H_
|
|
#define _DEBMASK_H_
|
|
/*
|
|
* several debug masks.
|
|
* second paramter in debug entries 100 .. 1xx
|
|
*
|
|
*/
|
|
|
|
/* NWCONN */
|
|
#define D_FH_OPEN 1 /* file open/close */
|
|
#define D_FH_LOCK 2 /* file lock/unlock */
|
|
#define D_FH_FLUSH 4 /* file flushes */
|
|
|
|
#define D_FN_NAMES 8
|
|
#define D_FN_SEARCH 0x10 /* file search */
|
|
|
|
#define D_ACCESS 0x20 /* access rights */
|
|
#define D_TRUSTEES 0x40 /* trustees */
|
|
|
|
/* NWBIND */
|
|
#define D_BIND_REQ 0x8000 /* all Requests */
|
|
|
|
#endif
|
|
|