This file also depends on sys/types.h and sys/ioccom.h.

Remove some old junk.

Submitted by:	bde
This commit is contained in:
Boris Popov 2001-04-13 10:50:48 +00:00
parent 2a758ebe58
commit 34ae6c7541
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=75475

View File

@ -34,6 +34,11 @@
#ifndef _NETSMB_DEV_H_
#define _NETSMB_DEV_H_
#ifndef _KERNEL
#include <sys/types.h>
#endif
#include <sys/ioccom.h>
#include <netsmb/smb.h>
#define NSMB_NAME "nsmb"
@ -47,7 +52,7 @@
#define SMBVOPT_CREATE 0x0001 /* create object if necessary */
#define SMBVOPT_PRIVATE 0x0002 /* connection should be private */
#define SMBVOPT_SINGLESHARE 0x0004 /* keep only ane share at this VC */
#define SMBVOPT_SINGLESHARE 0x0004 /* keep only one share at this VC */
#define SMBVOPT_PERMANENT 0x0010 /* object will keep last reference */
#define SMBSOPT_CREATE 0x0001 /* create object if necessary */
@ -152,12 +157,6 @@ struct smbioc_rw {
#ifdef _KERNEL
#ifndef LK_SHARED
#include <sys/lock.h>
#endif
#define IF_QEMPTY(ifq) ((ifq)->ifq_len == 0)
#define SMBST_CONNECTED 1
STAILQ_HEAD(smbrqh, smb_rq);