Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for SMB2_CLOSE (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/internal/smb2/create/Smb2CloseRequest.java

         * @param fileName
         *            The name of the file being closed
         */
        public Smb2CloseRequest(final Configuration config, final byte[] fileId, final String fileName) {
            super(config, SMB2_CLOSE);
            this.fileId = fileId;
            this.fileName = fileName;
        }
    
        /**
         * Constructs a close request with file ID only
         *
         * @param config
         *            The configuration to use
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            case SMB2_LOGOFF -> "SMB2_LOGOFF";
            case SMB2_TREE_CONNECT -> "SMB2_TREE_CONNECT";
            case SMB2_TREE_DISCONNECT -> "SMB2_TREE_DISCONNECT";
            case SMB2_CREATE -> "SMB2_CREATE";
            case SMB2_CLOSE -> "SMB2_CLOSE";
            case SMB2_FLUSH -> "SMB2_FLUSH";
            case SMB2_READ -> "SMB2_READ";
            case SMB2_WRITE -> "SMB2_WRITE";
            case SMB2_LOCK -> "SMB2_LOCK";
            case SMB2_IOCTL -> "SMB2_IOCTL";
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 24K bytes
    - Click Count (0)
Back to Top