Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for transaction (0.17 sec)

  1. src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipe.java

        /**
         * 
         * @param config
         * @param pipeName
         */
        public TransWaitNamedPipe ( Configuration config, String pipeName ) {
            super(config, SMB_COM_TRANSACTION, TRANS_WAIT_NAMED_PIPE);
            this.name = pipeName;
            this.timeout = 0xFFFFFFFF;
            this.maxParameterCount = 0;
            this.maxDataCount = 0;
            this.maxSetupCount = (byte) 0x00;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/TransTransactNamedPipe.java

        TransTransactNamedPipe( int fid, byte[] data, int off, int len ) {
            pipeFid = fid;
            pipeData = data;
            pipeDataOff = off;
            pipeDataLen = len;
            command = SMB_COM_TRANSACTION;
            subCommand = TRANS_TRANSACT_NAMED_PIPE;
            maxParameterCount = 0;
            maxDataCount = 0xFFFF;
            maxSetupCount = (byte)0x00;
            setupCount = 2;
            name = "\\PIPE\\";
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTree.java

                    case ServerMessageBlock.SMB_COM_CLOSE:
                    case ServerMessageBlock.SMB_COM_TREE_DISCONNECT:
                        break;
                    case ServerMessageBlock.SMB_COM_TRANSACTION:
                    case ServerMessageBlock.SMB_COM_TRANSACTION2:
                        switch( ((SmbComTransaction)request).subCommand & 0xFF ) {
                            case SmbComTransaction.NET_SHARE_ENUM:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/PropertyConfiguration.java

            this.winsServer = Config.getInetAddressArray(p, "jcifs.netbios.wins", ",", new InetAddress[0]);
    
            this.transactionBufferSize = Config.getInt(p, "jcifs.smb.client.transaction_buf_size", 0xFFFF) - 512;
            this.bufferCacheSize = Config.getInt(p, "jcifs.smb.maxBuffers", 16);
    
            this.smbListSize = Config.getInt(p, "jcifs.smb.client.listSize", 65435);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *         .transformAsync((closer, transaction) -> transaction.queryClosingFuture("..."), executor)
     *         .transform((closer, result) -> result.get("userName"), directExecutor())
     *         .catching(DBException.class, e -> "no user", directExecutor())
     *         .finishToFuture();
     * }</pre>
     *
     * In this example, when the {@code userName} {@link Future} is done, the transaction and the query
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Configuration.java

         */
        int getMaximumBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.transaction_buf_size</tt> (int, default 65535)
         * 
         * @return maximum data size for SMB transactions
         */
        int getTransactionBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.maxBuffers</tt> (int, default 16)
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeImpl.java

                case ServerMessageBlock.SMB_COM_CLOSE:
                case ServerMessageBlock.SMB_COM_TREE_DISCONNECT:
                    break;
                case ServerMessageBlock.SMB_COM_TRANSACTION:
                case ServerMessageBlock.SMB_COM_TRANSACTION2:
                    switch ( ( (SmbComTransaction) request ).getSubCommand() & 0xFF ) {
                    case SmbComTransaction.NET_SHARE_ENUM:
                    case SmbComTransaction.NET_SERVER_ENUM2:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java

    
        /**
         * 
         * @param config
         * @param filename
         */
        public Trans2GetDfsReferral ( Configuration config, String filename ) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_GET_DFS_REFERRAL);
            this.request = new DfsReferralRequestBuffer(filename, 3);
            this.totalDataCount = 0;
            this.maxParameterCount = 0;
            this.maxDataCount = 4096;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java

    
        /**
         * @param config
         * @param fid
         * @param info
         * 
         */
        public Trans2SetFileInformation ( Configuration config, int fid, FileInformation info ) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_SET_FILE_INFORMATION);
            this.fid = fid;
            this.info = info;
            this.maxParameterCount = 6;
            this.maxDataCount = 0;
            this.maxSetupCount = (byte) 0x00;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java

        private String lastName;
        private int resumeKey;
    
    
        /**
         * 
         * @param config
         */
        public Trans2FindFirst2Response ( Configuration config ) {
            super(config, SMB_COM_TRANSACTION2, SmbComTransaction.TRANS2_FIND_FIRST2);
        }
    
    
        /**
         * @return the sid
         */
        public final int getSid () {
            return this.sid;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.7K bytes
    - Viewed (0)
Back to top