Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for readQuestionSectionWireFormat (0.22 sec)

  1. src/main/java/jcifs/netbios/NameQueryRequest.java

            return writeQuestionSectionWireFormat(dst, dstIndex);
        }
    
    
        @Override
        int readBodyWireFormat ( byte[] src, int srcIndex ) {
            return readQuestionSectionWireFormat(src, srcIndex);
        }
    
    
        @Override
        int writeRDataWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameQueryRequest.java

        }
    
        int writeBodyWireFormat( byte[] dst, int dstIndex ) {
            return writeQuestionSectionWireFormat( dst, dstIndex );
        }
        int readBodyWireFormat( byte[] src, int srcIndex ) {
            return readQuestionSectionWireFormat( src, srcIndex );
        }
        int writeRDataWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int readRDataWireFormat( byte[] src, int srcIndex ) {
            return 0;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
Back to top