- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for SmbComNtTransactionResponse (0.17 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/smb1/smb1/SmbComNtTransactionResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import jcifs.smb1.util.LogStream; abstract class SmbComNtTransactionResponse extends SmbComTransactionResponse { SmbComNtTransactionResponse() { } @Override int readParameterWordsWireFormat(final byte[] buffer, int bufferIndex) { final int start = bufferIndex;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java
*/ public abstract class SmbComNtTransactionResponse extends SmbComTransactionResponse { private static final Logger log = LoggerFactory.getLogger(SmbComNtTransactionResponse.class); /** * Constructs an NT transaction response. * @param config the configuration context for this response */ protected SmbComNtTransactionResponse(final Configuration config) { super(config); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
import jcifs.Configuration; import jcifs.DialectVersion; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.util.SMBUtil; /** * Test class for SmbComNtTransactionResponse */ @DisplayName("SmbComNtTransactionResponse Tests") class SmbComNtTransactionResponseTest { @Mock private Configuration mockConfig; private TestSmbComNtTransactionResponse response;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 16.3K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComNtTransactionResponseTest.java
private TestableSmbComNtTransactionResponse response; // A concrete implementation of the abstract class for testing purposes. private static class TestableSmbComNtTransactionResponse extends SmbComNtTransactionResponse { @Override int writeSetupWireFormat(byte[] dst, int dstIndex) { return 0; } @Override int writeParametersWireFormat(byte[] dst, int dstIndex) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDescResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import java.io.IOException; class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse { SecurityDescriptor securityDescriptor; NtTransQuerySecurityDescResponse() { } @Override int writeSetupWireFormat(final byte[] dst, final int dstIndex) { return 0;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponse.java
* * This response contains the Windows security descriptor retrieved * from the server, including access control information. */ public class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse { private SecurityDescriptor securityDescriptor; /** * Constructs an NT transaction query security descriptor response. * @param config the configuration context for this response */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java
* * This response contains file system change notifications that occurred * in the monitored directory, such as file creation, modification, or deletion. */ public class NtTransNotifyChangeResponse extends SmbComNtTransactionResponse implements NotifyResponse { private final List<FileNotifyInformation> notifyInformation = new ArrayList<>(); /** * Constructs an NT transaction notify change response.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.4K bytes - Click Count (0)