- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 88 for 0x80000000 (0.03 sec)
-
src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java
*/ int NTLMSSP_NEGOTIATE_TARGET_INFO = 0x00800000; /** * Indicates that 128-bit encryption is supported. */ int NTLMSSP_NEGOTIATE_128 = 0x20000000; /** * Indicates that key exchange is supported for session security. */ int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000; /** * Indicates that 56-bit encryption is supported. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java
assertEquals(domain.toUpperCase(), writtenDomain); } @ParameterizedTest @DisplayName("Test writeParametersWireFormat with various server types") @ValueSource(ints = { 0x00000000, 0x00000001, 0x00000801, 0x80000000, 0xFFFFFFFF }) void testWriteParametersWireFormatVariousServerTypes(int serverType) { String domain = "DOMAIN"; netServerEnum2 = new NetServerEnum2(realConfig, domain, serverType);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbConstantsTest.java
assertEquals(0x0010, SmbConstants.CAP_NT_SMBS); assertEquals(0x0040, SmbConstants.CAP_STATUS32); assertEquals(0x1000, SmbConstants.CAP_DFS); assertEquals(0x80000000, SmbConstants.CAP_EXTENDED_SECURITY); } /** * Test file attribute constants. */ @Test @DisplayName("File attribute constants are correct") void fileAttributesTest() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
public static final int WRITE_OWNER = 0x00080000; // 19 /** Permission to synchronize with the file */ public static final int SYNCHRONIZE = 0x00100000; // 20 /** Generic all permissions */ public static final int GENERIC_ALL = 0x10000000; // 28 /** Generic execute permission */ public static final int GENERIC_EXECUTE = 0x20000000; // 29 /** Generic write permission */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java
String commentOrMasterBrowser; @Override public String getName() { return name; } @Override public int getType() { return (type & 0x80000000) != 0 ? SmbFile.TYPE_WORKGROUP : SmbFile.TYPE_SERVER; } @Override public int getAttributes() { return SmbFile.ATTR_READONLY | SmbFile.ATTR_DIRECTORY; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbShareInfo.java
this.type = type; this.remark = remark; } @Override public String getName() { return netName; } @Override public int getType() { /* 0x80000000 means hidden but SmbFile.isHidden() checks for $ at end */ switch (type & 0xFFFF) { case 1: return SmbFile.TYPE_PRINTER; case 3: return SmbFile.TYPE_NAMED_PIPE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
0x00100000, // SYNCHRONIZE 0x10000000, // GENERIC_ALL 0x20000000, // GENERIC_EXECUTE 0x40000000, // GENERIC_WRITE 0x80000000 // GENERIC_READ (as int will be negative) }) void testVariousAccessMaskValues(int accessMask) { ace.access = accessMask; assertEquals(accessMask, ace.getAccessMask()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2.java
package jcifs.smb1.smb1; import java.io.UnsupportedEncodingException; class NetServerEnum2 extends SmbComTransaction { static final int SV_TYPE_ALL = 0xFFFFFFFF; static final int SV_TYPE_DOMAIN_ENUM = 0x80000000; static final String[] DESCR = { "WrLehDO\u0000B16BBDz\u0000", "WrLehDz\u0000B16BBDz\u0000", }; String domain, lastName = null; int serverTypes;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
* * @see jcifs.smb.FileEntry#getFileIndex() */ @Override public int getFileIndex() { return 0; } @Override public int getType() { /* * 0x80000000 means hidden but SmbFile.isHidden() checks for $ at end */ switch (this.type & 0xFFFF) { case 1: return SmbConstants.TYPE_PRINTER; case 3:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetServerEnum2Response.java
@Override public String getName() { return this.name; } @Override public int getType() { return (this.type & 0x80000000) != 0 ? SmbConstants.TYPE_WORKGROUP : SmbConstants.TYPE_SERVER; } @Override public int getAttributes() { return SmbConstants.ATTR_READONLY | SmbConstants.ATTR_DIRECTORY; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0)