- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 89 for 0xf2 (0.04 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java
static final int FILE_SYNCHRONOUS_IO_NONALERT = 0x00000020; // security flags static final int SECURITY_CONTEXT_TRACKING = 0x01; static final int SECURITY_EFFECTIVE_ONLY = 0x02; private int rootDirectoryFid, extFileAttributes, shareAccess, createDisposition, createOptions, impersonationLevel; private long allocationSize; private byte securityFlags; private int namelen_index;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
} int readRDataWireFormat( byte[] src, int srcIndex ) { int start = srcIndex; numberOfNames = src[srcIndex] & 0xFF; int namesLength = numberOfNames * 18; int statsLength = rDataLength - namesLength - 1; numberOfNames = src[srcIndex++] & 0xFF; // gotta read the mac first so we can populate addressArray with it System.arraycopy( src, srcIndex + namesLength, macAddress, 0, 6 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6K bytes - Viewed (0) -
cmd/tier_gen.go
} } return } // EncodeMsg implements msgp.Encodable func (z *TierConfigMgr) EncodeMsg(en *msgp.Writer) (err error) { // map header, size 1 // write "Tiers" err = en.Append(0x81, 0xa5, 0x54, 0x69, 0x65, 0x72, 0x73) if err != nil { return } err = en.WriteMapHeader(uint32(len(z.Tiers))) if err != nil { err = msgp.WrapError(err, "Tiers") return } for za0001, za0002 := range z.Tiers {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 20 00:53:08 UTC 2023 - 4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
public static final int GENERIC_READ = 0x80000000; // 31 public static final int FLAGS_OBJECT_INHERIT = 0x01; public static final int FLAGS_CONTAINER_INHERIT = 0x02; public static final int FLAGS_NO_PROPAGATE = 0x04; public static final int FLAGS_INHERIT_ONLY = 0x08; public static final int FLAGS_INHERITED = 0x10; boolean allow; int flags;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
static final int FLAGS_NONE = 0x00; static final int FLAGS_LOCK_AND_READ_WRITE_AND_UNLOCK = 0x01; static final int FLAGS_RECEIVE_BUFFER_POSTED = 0x02; static final int FLAGS_PATH_NAMES_CASELESS = 0x08; static final int FLAGS_PATH_NAMES_CANONICALIZED = 0x10; static final int FLAGS_OPLOCK_REQUESTED_OR_GRANTED = 0x20;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransaction.java
private static final int SECONDARY_PARAMETER_OFFSET = 51; private static final int DISCONNECT_TID = 0x01; private static final int ONE_WAY_TRANSACTION = 0x02; private static final int PADDING_SIZE = 2; private int flags = 0x00; private int fid; private int pad = 0; private int pad1 = 0; private boolean hasMore = true;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
*/ public class SmbComOpenAndX extends AndXServerMessageBlock { // flags (not the same as flags constructor argument) static final int FLAGS_RETURN_ADDITIONAL_INFO = 0x01; static final int FLAGS_REQUEST_OPLOCK = 0x02; static final int FLAGS_REQUEST_BATCH_OPLOCK = 0x04; // Access Mode Encoding for desiredAccess static final int SHARING_COMPATIBILITY = 0x00; static final int SHARING_DENY_READ_WRITE_EXECUTE = 0x10;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
if ( this.dialectIndex > 10 ) { return bufferIndex - start; } this.server.securityMode = buffer[ bufferIndex++ ] & 0xFF; this.server.security = this.server.securityMode & 0x01; this.server.encryptedPasswords = ( this.server.securityMode & 0x02 ) == 0x02; this.server.signaturesEnabled = ( this.server.securityMode & 0x04 ) == 0x04;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcConstants.java
public static final int DCERPC_FIRST_FRAG = 0x01; /* First fragment */ public static final int DCERPC_LAST_FRAG = 0x02; /* Last fragment */ public static final int DCERPC_PENDING_CANCEL = 0x04; /* Cancel was pending at sender */ public static final int DCERPC_RESERVED_1 = 0x08;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiate.java
@Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { ByteArrayOutputStream bos = new ByteArrayOutputStream(); for ( String dialect : this.dialects ) { bos.write(0x02); try { bos.write(Strings.getASCIIBytes(dialect)); } catch ( IOException e ) { throw new RuntimeCIFSException(e); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.3K bytes - Viewed (0)