mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 17:24:07 +02:00
move backends into their own namespace and add support for multiple auth methods
This commit is contained in:
parent
2280570d28
commit
29bdebad42
33 changed files with 752 additions and 377 deletions
|
|
@ -8,6 +8,19 @@
|
|||
namespace Icewind\SMB;
|
||||
|
||||
interface IFileInfo {
|
||||
/*
|
||||
* Mappings of the DOS mode bits, as returned by smbc_getxattr() when the
|
||||
* attribute name "system.dos_attr.mode" (or "system.dos_attr.*" or
|
||||
* "system.*") is specified.
|
||||
*/
|
||||
const MODE_READONLY = 0x01;
|
||||
const MODE_HIDDEN = 0x02;
|
||||
const MODE_SYSTEM = 0x04;
|
||||
const MODE_VOLUME_ID = 0x08;
|
||||
const MODE_DIRECTORY = 0x10;
|
||||
const MODE_ARCHIVE = 0x20;
|
||||
const MODE_NORMAL = 0x80;
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue