- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 254 for 0x11 (0.02 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
* This operation releases resources associated with the handle. */ public static class SamrCloseHandle extends DcerpcMessage { @Override public int getOpnum() { return 0x01; } /** The return value of the operation */ public int retval; /** The handle to be closed */ public rpc.policy_handle handle; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
static final byte SMB_COM_DELETE_DIRECTORY = (byte) 0x01; static final byte SMB_COM_CLOSE = (byte) 0x04; static final byte SMB_COM_DELETE = (byte) 0x06; static final byte SMB_COM_RENAME = (byte) 0x07; static final byte SMB_COM_QUERY_INFORMATION = (byte) 0x08; static final byte SMB_COM_WRITE = (byte) 0x0B; static final byte SMB_COM_CHECK_DIRECTORY = (byte) 0x10; static final byte SMB_COM_TRANSACTION = (byte) 0x25;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
// Verify content assertEquals(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION, buffer[0]); assertEquals(0x00, buffer[1]); assertEquals(0x03, buffer[2]); // Low byte of 0x0103 assertEquals(0x01, buffer[3]); // High byte of 0x0103 } @DisplayName("Test toString with different information levels") @ParameterizedTest @CsvSource({ "-1, fff", // SMB_INFO_ALLOCATION
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationTest.java
@DisplayName("Test attributes with OR operation") void testAttributesWithOrOperation() { // The constructor ORs attributes with 0x80 trans2SetFileInfo = new Trans2SetFileInformation(config, TEST_FID, 0x01, // FILE_ATTRIBUTE_READONLY TEST_CREATE_TIME, TEST_LAST_WRITE_TIME, TEST_LAST_ACCESS_TIME); // The constructor should create FileBasicInfo with attributes | 0x80
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Shorts.java
* {@code ByteBuffer.allocate(2).putShort(value).array()}. For example, the input value {@code * (short) 0x1234} would yield the byte array {@code {0x12, 0x34}}. * * <p>If you need to convert and concatenate several values (possibly even of different types), * use a shared {@link java.nio.ByteBuffer} instance, or use {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.8K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Shorts.java
* {@code ByteBuffer.allocate(2).putShort(value).array()}. For example, the input value {@code * (short) 0x1234} would yield the byte array {@code {0x12, 0x34}}. * * <p>If you need to convert and concatenate several values (possibly even of different types), * use a shared {@link java.nio.ByteBuffer} instance, or use {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.8K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
if (pathInfo == null || server == null) { final String mb = nameServiceClient.getNbtByName(NbtAddress.MASTER_BROWSER_NAME, 0x01, null).getHostAddress(); dc = nameServiceClient.getByName(mb); } else { dc = nameServiceClient.getByName(server, possibleWorkgroup); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
### 3.1 Lease State Flags ```java public class Smb2LeaseState { // Lease state flags (can be combined) public static final int SMB2_LEASE_NONE = 0x00; public static final int SMB2_LEASE_READ_CACHING = 0x01; // R - Read caching public static final int SMB2_LEASE_HANDLE_CACHING = 0x02; // H - Handle caching public static final int SMB2_LEASE_WRITE_CACHING = 0x04; // W - Write caching // Common combinations
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
* implementation. */ /** SMB2 negotiate protocol command */ protected static final short SMB2_NEGOTIATE = 0x00; /** SMB2 session setup command */ protected static final short SMB2_SESSION_SETUP = 0x01; /** SMB2 logoff command */ protected static final short SMB2_LOGOFF = 0x02; /** SMB2 tree connect command */ protected static final short SMB2_TREE_CONNECT = 0x0003; /** SMB2 tree disconnect command */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
*/ public void performChannelBinding(ChannelInfo channel) throws IOException { // MS-SMB2 3.2.4.1.6: Alternative Channel Creation // Channel binding requires SMB2_SESSION_FLAG_BINDING (0x01) in session setup // Calculate channel binding hash per MS-SMB2 3.2.5.3.1 byte[] bindingInfo = calculateBindingInfo(channel); byte[] bindingHash = calculateBindingHash(bindingInfo);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0)