Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SmbComNTCreateAndXResponse (0.2 sec)

  1. src/test/java/jcifs/tests/OplockTests.java

                            | SmbConstants.FILE_WRITE_DATA;
                    int attrs = 0;
                    int options = 0;
                    String uncPath = "foo-oplock";
    
                    SmbComNTCreateAndXResponse resp = new SmbComNTCreateAndXResponse(sess.getConfig());
                    SmbComNTCreateAndX req = new SmbComNTCreateAndX(sess.getConfig(), uncPath, flags, access, sharing, attrs, options, null);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                     * signing verification failure.
                     */
                    if ( this.getCommand() == SMB_COM_NT_CREATE_ANDX && ( (SmbComNTCreateAndXResponse) this ).isExtended()
                            && ( (SmbComNTCreateAndXResponse) this ).getFileType() != 1 ) {
                        this.wordCount += 8;
                    }
                }
    
                bufferIndex = start + 1 + ( this.wordCount * 2 );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                }
                else if ( h.hasCapability(SmbConstants.CAP_NT_SMBS) ) {
                    SmbComNTCreateAndXResponse resp = new SmbComNTCreateAndXResponse(config);
                    SmbComNTCreateAndX req = new SmbComNTCreateAndX(config, uncPath, flags, access, sharing, attrs, options, null);
                    customizeCreate(req, resp);
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            /*
             * NT Create AndX / Open AndX Request / Response
             */
    
            if( tree.session.transport.hasCapability( ServerMessageBlock.CAP_NT_SMBS )) {
                SmbComNTCreateAndXResponse response = new SmbComNTCreateAndXResponse();
    SmbComNTCreateAndX request = new SmbComNTCreateAndX( unc, flags, access, shareAccess, attrs, options, null );
    if (this instanceof SmbNamedPipe) {
        request.flags0 |= 0x16;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top