Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for AndX (0.02 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java

        /**
         * Constructs a tree connect AndX request to establish a connection to a shared resource.
         *
         * @param ctx the CIFS context containing configuration
         * @param server the server data containing security information
         * @param path the UNC path to the shared resource
         * @param service the service type (e.g., "A:" for disk share, "LPT1:" for printer)
         * @param andx the next command in the AndX chain, or null
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java

        // flags is NOT the same as flags member
    
        SmbComOpenAndX(final String fileName, final int access, final int flags, final ServerMessageBlock andx) {
            super(andx);
            this.path = fileName;
            command = SMB_COM_OPEN_ANDX;
    
            desiredAccess = access & 0x3;
            if (desiredAccess == 0x3) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

        private int capabilities;
    
        /**
         * Constructs a session setup AndX request.
         *
         * @param tc the CIFS context containing configuration and credentials
         * @param negotiated the negotiation response containing server capabilities
         * @param andx the next command in the AndX chain, or null
         * @param cred the authentication credentials to use for the session
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/SmbComLogoffAndXTest.java

            // SMB_COM_LOGOFF_ANDX = 0x74
            assertEquals((byte) 0x74, msg.command, "Command should be SMB_COM_LOGOFF_ANDX");
        }
    
        @Test
        @DisplayName("constructor with mock andx properly sets andx field")
        void constructorWithMockAndx() {
            // Create a mock ServerMessageBlock
            ServerMessageBlock mockAndx = mock(ServerMessageBlock.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java

        private String nativeFileSystem = "";
    
        /**
         * Constructs a tree connect AndX response.
         *
         * @param config the configuration to use
         * @param andx the next command in the AndX chain, or null
         */
        public SmbComTreeConnectAndXResponse(final Configuration config, final ServerMessageBlock andx) {
            super(config, andx);
        }
    
        /**
         * @return the service
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

    /**
     * SMB1 Read AndX request message.
     *
     * This command is used to read data from a file that has been
     * previously opened with an Open command.
     */
    public class SmbComReadAndX extends AndXServerMessageBlock {
    
        private long offset;
        private int fid;
        int openTimeout;
        int maxCount, minCount, remaining;
    
        /**
         * Constructs a Read AndX request.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeImpl.java

                        if (transport.isSMB2()) {
                            final Smb2TreeConnectRequest req = new Smb2TreeConnectRequest(sess.getConfig(), unc);
                            if (andx != null) {
                                req.chain((ServerMessageBlock2) andx);
                            }
                            request = req;
                        } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java

         * @param createOptions the create options
         * @param andx the next command in the chain
         */
        public SmbComNTCreateAndX(final Configuration config, final String name, final int flags, final int access, final int shareAccess,
                final int extFileAttributes, final int createOptions, final ServerMessageBlock andx) {
            super(config, SMB_COM_NT_CREATE_ANDX, name, andx);
            this.desiredAccess = access;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

        private long lastWriteTime;
    
        /**
         * Constructs an Open AndX response.
         *
         * @param config the configuration
         */
        public SmbComOpenAndXResponse(final Configuration config) {
            super(config);
        }
    
        /**
         * Constructs an Open AndX response with a chained response.
         *
         * @param config the configuration
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbComLogoffAndX.java

     */
    
    package jcifs.smb1.smb1;
    
    class SmbComLogoffAndX extends AndXServerMessageBlock {
    
        SmbComLogoffAndX(final ServerMessageBlock andx) {
            super(andx);
            command = SMB_COM_LOGOFF_ANDX;
        }
    
        @Override
        int writeParameterWordsWireFormat(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.6K bytes
    - Viewed (0)
Back to top