Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getCommand (0.04 sec)

  1. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

            super(config, command, name);
            this.andx = andx;
            if (andx != null) {
                this.andxCommand = (byte) andx.getCommand();
            }
        }
    
        /**
         * Constructs an AndX message block with configuration and command
         * @param config the configuration
         * @param command the SMB command
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

        private static void checkRequest(final SmbTransportImpl transport, final ServerMessageBlock request, final String svc)
                throws SmbException {
            if (!"A:".equals(svc)) {
                switch (request.getCommand()) {
                case ServerMessageBlock.SMB_COM_OPEN_ANDX:
                case ServerMessageBlock.SMB_COM_NT_CREATE_ANDX:
                case ServerMessageBlock.SMB_COM_READ_ANDX:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

                    response = sendComTransaction(request, response, params);
                } else {
                    if (response != null) {
                        response.setCommand(request.getCommand());
                    }
                    response = sendrecv(request, response, params);
                }
            } catch (final SmbException se) {
                throw se;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            this.flags = 0;
            this.digest = null;
            this.sessionId = 0;
            this.treeId = 0;
        }
    
        /**
         * @return the command
         */
        @Override
        public final int getCommand() {
            return this.command;
        }
    
        /**
         * Gets the offset to the next compound command in the message chain.
         *
         * @return offset to next compound command
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
Back to top