⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 trans2.h

📁 samba-3.0.22.tar.gz 编译smb服务器的源码
💻 H
📖 第 1 页 / 共 2 页
字号:
/*    Unix SMB/CIFS implementation.   SMB transaction2 handling   Copyright (C) Jeremy Allison 1994-2002.   Extensively modified by Andrew Tridgell, 1995   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; either version 2 of the License, or   (at your option) any later version.      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.      You should have received a copy of the GNU General Public License   along with this program; if not, write to the Free Software   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.*/#ifndef _TRANS2_H_#define _TRANS2_H_/* Define the structures needed for the trans2 calls. *//******************************************************* For DosFindFirst/DosFindNext - level 1MAXFILENAMELEN = 255;FDATE == uint16FTIME == uint16ULONG == uint32USHORT == uint16typedef struct _FILEFINDBUF {Byte offset   Type     name                description-------------+-------+-------------------+--------------0             FDATE    fdateCreation;2             FTIME    ftimeCreation;4             FDATE    fdateLastAccess;6             FTIME    ftimeLastAccess;8             FDATE    fdateLastWrite;10            FTIME    ftimeLastWrite;12            ULONG    cbFile               file length in bytes16            ULONG    cbFileAlloc          size of file allocation unit20            USHORT   attrFile22            UCHAR    cchName              length of name to follow (not including zero)23            UCHAR    achName[MAXFILENAMELEN]; Null terminated name} FILEFINDBUF;*********************************************************/#define l1_fdateCreation 0#define l1_fdateLastAccess 4#define l1_fdateLastWrite 8#define l1_cbFile 12#define l1_cbFileAlloc 16#define l1_attrFile 20#define l1_cchName 22#define l1_achName 23/**********************************************************For DosFindFirst/DosFindNext - level 2typedef struct _FILEFINDBUF2 {Byte offset   Type     name                description-------------+-------+-------------------+--------------0             FDATE    fdateCreation;2             FTIME    ftimeCreation;4             FDATE    fdateLastAccess;6             FTIME    ftimeLastAccess;8             FDATE    fdateLastWrite;10            FTIME    ftimeLastWrite;12            ULONG    cbFile               file length in bytes16            ULONG    cbFileAlloc          size of file allocation unit20            USHORT   attrFile22            ULONG    cbList               Extended attribute list (always 0)26            UCHAR    cchName              length of name to follow (not including zero)27            UCHAR    achName[MAXFILENAMELEN]; Null terminated name} FILEFINDBUF2;*************************************************************/#define l2_fdateCreation 0#define l2_fdateLastAccess 4#define l2_fdateLastWrite 8#define l2_cbFile 12#define l2_cbFileAlloc 16#define l2_attrFile 20#define l2_cbList 22#define l2_cchName 26#define l2_achName 27/**********************************************************For DosFindFirst/DosFindNext - level 260typedef struct _FILEFINDBUF260 {Byte offset   Type     name                description-------------+-------+-------------------+--------------0              ULONG  NextEntryOffset;4              ULONG  FileIndex;8              LARGE_INTEGER CreationTime;16             LARGE_INTEGER LastAccessTime;24             LARGE_INTEGER LastWriteTime;32             LARGE_INTEGER ChangeTime;40             LARGE_INTEGER EndOfFile;48             LARGE_INTEGER AllocationSize;56             ULONG FileAttributes;60             ULONG FileNameLength;64             ULONG EaSize;68             CHAR ShortNameLength;70             UNICODE ShortName[12];94             UNICODE FileName[];*************************************************************/#define l260_achName 94/**********************************************************For DosQueryPathInfo/DosQueryFileInfo/DosSetPathInfo/DosSetFileInfo - level 1typedef struct _FILESTATUS {Byte offset   Type     name                description-------------+-------+-------------------+--------------0             FDATE    fdateCreation;2             FTIME    ftimeCreation;4             FDATE    fdateLastAccess;6             FTIME    ftimeLastAccess;8             FDATE    fdateLastWrite;10            FTIME    ftimeLastWrite;12            ULONG    cbFile               file length in bytes16            ULONG    cbFileAlloc          size of file allocation unit20            USHORT   attrFile} FILESTATUS;*************************************************************//* Use the l1_ defines from DosFindFirst *//**********************************************************For DosQueryPathInfo/DosQueryFileInfo/DosSetPathInfo/DosSetFileInfo - level 2typedef struct _FILESTATUS2 {Byte offset   Type     name                description-------------+-------+-------------------+--------------0             FDATE    fdateCreation;2             FTIME    ftimeCreation;4             FDATE    fdateLastAccess;6             FTIME    ftimeLastAccess;8             FDATE    fdateLastWrite;10            FTIME    ftimeLastWrite;12            ULONG    cbFile               file length in bytes16            ULONG    cbFileAlloc          size of file allocation unit20            USHORT   attrFile22            ULONG    cbList               Length of EA's (0)} FILESTATUS2;*************************************************************//* Use the l2_ #defines from DosFindFirst *//**********************************************************For DosQFSInfo/DosSetFSInfo - level 1typedef struct _FSALLOCATE {Byte offset   Type     name                description-------------+-------+-------------------+--------------0             ULONG    idFileSystem       id of file system4             ULONG    cSectorUnit        number of sectors per allocation unit8             ULONG    cUnit              number of allocation units12            ULONG    cUnitAvail         Available allocation units16            USHORT   cbSector           bytes per sector} FSALLOCATE;*************************************************************/#define l1_idFileSystem 0#define l1_cSectorUnit 4#define l1_cUnit 8#define l1_cUnitAvail 12#define l1_cbSector 16/**********************************************************For DosQFSInfo/DosSetFSInfo - level 2typedef struct _FSINFO {Byte offset   Type     name                description-------------+-------+-------------------+--------------0             FDATE   vol_fdateCreation2             FTIME   vol_ftimeCreation4             UCHAR   vol_cch             length of volume name (excluding NULL)5             UCHAR   vol_szVolLabel[12]  volume name} FSINFO;*************************************************************/#define SMB_INFO_STANDARD               1  /* FILESTATUS3 struct */#define SMB_INFO_SET_EA                 2  /* EAOP2 struct, only valid on set not query */#define SMB_INFO_QUERY_EA_SIZE          2  /* FILESTATUS4 struct, only valid on query not set */#define SMB_INFO_QUERY_EAS_FROM_LIST    3  /* only valid on query not set */#define SMB_INFO_QUERY_ALL_EAS          4  /* only valid on query not set */#define SMB_INFO_IS_NAME_VALID          6#define SMB_INFO_STANDARD_LONG          11  /* similar to level 1, ie struct FileStatus3 */#define SMB_QUERY_EA_SIZE_LONG          12  /* similar to level 2, ie struct FileStatus4 */#define SMB_QUERY_FS_LABEL_INFO         0x101#define SMB_QUERY_FS_VOLUME_INFO        0x102#define SMB_QUERY_FS_SIZE_INFO          0x103#define SMB_QUERY_FS_DEVICE_INFO        0x104#define SMB_QUERY_FS_ATTRIBUTE_INFO     0x105#if 0#define SMB_QUERY_FS_QUOTA_INFO		#endif#define l2_vol_fdateCreation 0#define l2_vol_cch 4#define l2_vol_szVolLabel 5#define SMB_QUERY_FILE_BASIC_INFO	0x101#define SMB_QUERY_FILE_STANDARD_INFO	0x102#define SMB_QUERY_FILE_EA_INFO		0x103#define SMB_QUERY_FILE_NAME_INFO	0x104#define SMB_QUERY_FILE_ALLOCATION_INFO	0x105#define SMB_QUERY_FILE_END_OF_FILEINFO	0x106#define SMB_QUERY_FILE_ALL_INFO		0x107#define SMB_QUERY_FILE_ALT_NAME_INFO	0x108#define SMB_QUERY_FILE_STREAM_INFO	0x109#define SMB_QUERY_COMPRESSION_INFO	0x10b#define SMB_FIND_INFO_STANDARD			1#define SMB_FIND_EA_SIZE			2#define SMB_FIND_EA_LIST			3#define SMB_FIND_FILE_DIRECTORY_INFO		0x101#define SMB_FIND_FILE_FULL_DIRECTORY_INFO	0x102#define SMB_FIND_FILE_NAMES_INFO		0x103#define SMB_FIND_FILE_BOTH_DIRECTORY_INFO	0x104#define SMB_FIND_ID_FULL_DIRECTORY_INFO		0x105#define SMB_FIND_ID_BOTH_DIRECTORY_INFO		0x106#define SMB_SET_FILE_BASIC_INFO		0x101#define SMB_SET_FILE_DISPOSITION_INFO	0x102#define SMB_SET_FILE_ALLOCATION_INFO	0x103#define SMB_SET_FILE_END_OF_FILE_INFO	0x104/* Query FS info. */#define SMB_INFO_ALLOCATION		1#define SMB_INFO_VOLUME			2/* * Thursby MAC extensions.... *//* * MAC CIFS Extensions have the range 0x300 - 0x2FF reserved. * Supposedly Microsoft have agreed to this. */#define MIN_MAC_INFO_LEVEL 0x300#define MAX_MAC_INFO_LEVEL 0x3FF#define SMB_MAC_QUERY_FS_INFO           0x301#define DIRLEN_GUESS (45+MAX(l1_achName,l2_achName))/* * DeviceType and Characteristics returned in a * SMB_QUERY_FS_DEVICE_INFO call. */#define DEVICETYPE_CD_ROM		0x2#define DEVICETYPE_CD_ROM_FILE_SYSTEM	0x3#define DEVICETYPE_DISK			0x7#define DEVICETYPE_DISK_FILE_SYSTEM	0x8#define DEVICETYPE_FILE_SYSTEM		0x9/* Characteristics. */#define TYPE_REMOVABLE_MEDIA		0x1#define TYPE_READ_ONLY_DEVICE		0x2#define TYPE_FLOPPY			0x4#define TYPE_WORM			0x8#define TYPE_REMOTE			0x10#define TYPE_MOUNTED			0x20#define TYPE_VIRTUAL			0x40/* NT passthrough levels... */#define SMB_FILE_DIRECTORY_INFORMATION			1001#define SMB_FILE_FULL_DIRECTORY_INFORMATION		1002#define SMB_FILE_BOTH_DIRECTORY_INFORMATION		1003#define SMB_FILE_BASIC_INFORMATION			1004#define SMB_FILE_STANDARD_INFORMATION			1005

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -