Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TransWaitNamedPipeResponse (0.32 sec)

  1. src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponse.java

     * for connection when the pipe server was busy.
     */
    public class TransWaitNamedPipeResponse extends SmbComTransactionResponse {
    
        /**
         * Constructs a response for a wait named pipe request.
         *
         * @param config the configuration to use
         */
        public TransWaitNamedPipeResponse(final Configuration config) {
            super(config);
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/TransWaitNamedPipeResponse.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    class TransWaitNamedPipeResponse extends SmbComTransactionResponse {
    
        // not much to this one is there :~)
    
        TransWaitNamedPipeResponse() {
        }
    
        @Override
        int writeSetupWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeResponseTest.java

            TransWaitNamedPipeResponse resp = new TransWaitNamedPipeResponse();
            String str = resp.toString();
            assertNotNull(str, "toString should not return null");
            assertTrue(str.startsWith("TransWaitNamedPipeResponse["), "toString should begin with class name");
        }
    
        /**
         * Verify that all methods can be called with null buffers without
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/TransactNamedPipeOutputStream.java

            if (len < 0) {
                len = 0;
            }
    
            if ((pipe.pipeType & SmbNamedPipe.PIPE_TYPE_CALL) == SmbNamedPipe.PIPE_TYPE_CALL) {
                pipe.send(new TransWaitNamedPipe(path), new TransWaitNamedPipeResponse());
                pipe.send(new TransCallNamedPipe(path, b, off, len), new TransCallNamedPipeResponse(pipe));
            } else if ((pipe.pipeType & SmbNamedPipe.PIPE_TYPE_TRANSACT) == SmbNamedPipe.PIPE_TYPE_TRANSACT) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top