- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for TransPeekNamedPipeResponse (0.17 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponse.java
*/ public static final int STATUS_SERVER_END_CLOSED = 4; private int available; /** * Constructs a TransPeekNamedPipeResponse with the specified configuration. * * @param config the SMB configuration */ public TransPeekNamedPipeResponse(final Configuration config) { super(config); } /** * Gets the number of bytes available to read from the named pipe.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java
TransPeekNamedPipeResponse response1 = new TransPeekNamedPipeResponse(mockConfig); TransPeekNamedPipeResponse response2 = new TransPeekNamedPipeResponse(mockConfig); // Act byte[] buffer = new byte[10]; SMBUtil.writeInt2(100, buffer, 0); SMBUtil.writeInt2(0, buffer, 2); SMBUtil.writeInt2(TransPeekNamedPipeResponse.STATUS_CONNECTION_OK, buffer, 4);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.8K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbPipeInputStreamTest.java
statusField.setInt(resp, TransPeekNamedPipeResponse.STATUS_CONNECTION_OK); Field availField = TransPeekNamedPipeResponse.class.getDeclaredField("available"); availField.setAccessible(true); availField.setInt(resp, 42); return resp; }).when(tree).send(any(TransPeekNamedPipe.class), any(TransPeekNamedPipeResponse.class), eq(RequestParam.NO_RETRY));
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.9K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbPipeInputStream.java
final TransPeekNamedPipeResponse resp = new TransPeekNamedPipeResponse(th.getConfig()); th.send(req, resp, RequestParam.NO_RETRY); if (resp.getStatus() == TransPeekNamedPipeResponse.STATUS_DISCONNECTED || resp.getStatus() == TransPeekNamedPipeResponse.STATUS_SERVER_END_CLOSED) { fd.markClosed(); return 0;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.8K bytes - Click Count (0)