- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 55 for 0x00ff0000 (0.08 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
private int maxMpxCount; private int snd_buf_size; private int recv_buf_size; private int tx_buf_size; private int capabilities; private final int sessionKey = 0x00000000; private boolean useUnicode; /** * Creates a new SMB1 negotiate response. * * @param ctx the CIFS context */ public SmbComNegotiateResponse(final CIFSContext ctx) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
assertThat(countFrames(logs, "FINE: >> 0x00000000 8 PING ")) .isEqualTo(1) assertThat(countFrames(logs, "FINE: << 0x00000000 8 PING ")) .isEqualTo(1) assertThat(countFrames(logs, "FINE: >> 0x00000000 8 PING ACK")) .isEqualTo(1) assertThat(countFrames(logs, "FINE: << 0x00000000 8 PING ACK")) .isEqualTo(1) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 73.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
* Don't bother to edit this. Everything within the interface * block is automatically generated from the ntstatus package. */ /** The operation completed successfully */ int NT_STATUS_SUCCESS = 0x00000000; /** The request is pending */ int NT_STATUS_PENDING = 0x00000103; /** A notify change request is being completed and information is being returned */ int NT_STATUS_NOTIFY_ENUM_DIR = 0x0000010C;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
WitnessRegisterMessage message = new WitnessRegisterMessage(); // Convert int version to WitnessVersion enum WitnessVersion witnessVersion = (request.getVersion() >= 0x00020000) ? WitnessVersion.VERSION_2 : WitnessVersion.VERSION_1; message.setVersion(witnessVersion); message.setNetName(serverAddress.getHostName()); message.setShareName(request.getShareName());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java
/** SMB Direct negotiate response message type */ public static final int NEGOTIATE_RESPONSE = 0x02; /** Status indicating successful negotiation */ public static final int STATUS_SUCCESS = 0x00000000; /** Status indicating SMB Direct is not supported */ public static final int STATUS_NOT_SUPPORTED = 0x00000001; /** Status indicating insufficient resources for SMB Direct */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/RequestWithFileIdTest.java
RequestWithFileId flushRequest = new Smb2FlushRequest(mockConfig, testFileId); RequestWithFileId ioctlRequest = new Smb2IoctlRequest(mockConfig, 0x00090000, testFileId); RequestWithFileId lockRequest = new Smb2LockRequest(mockConfig, testFileId, new Smb2Lock[0]); // Verify all implementations are not null
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0) -
docs/features/https.md
Failure in SSL library, usually a protocol error error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure (external/openssl/ssl/s23_clnt.c:770 0x7f2728a53ea0:0x00000000) at com.android.org.conscrypt.NativeCrypto.SSL_do_handshake(Native Method) ``` You can check a web server's configuration using [Qualys SSL Labs][qualys]. OkHttp's TLS
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Dec 24 00:16:30 UTC 2022 - 10.5K 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";
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/main/java/jcifs/smb1/smb1/NtStatus.java
/* Don't bother to edit this. Everthing within the interface * block is automatically generated from the ntstatus package. */ /** The operation completed successfully */ int NT_STATUS_SUCCESS = 0x00000000; /** The requested operation was unsuccessful */ int NT_STATUS_UNSUCCESSFUL = 0xC0000001; /** The requested operation is not implemented */ int NT_STATUS_NOT_IMPLEMENTED = 0xC0000002;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java
@DisplayName("Test readDataWireFormat with single share") void testReadDataWireFormatSingleShare() throws Exception { // Prepare test data String shareName = "SHARE1"; int shareType = 0x00000000; // Disk share String remark = "Test share"; // Calculate buffer size int shareNameSize = 14; // 13 bytes + null terminator (fixed field) int typeSize = 2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.2K bytes - Viewed (0)