Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for count (0.13 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbComWriteResponse.java

    class SmbComWriteResponse extends ServerMessageBlock {
    
        long count;
    
        SmbComWriteResponse() {
        }
    
        int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int writeBytesWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) {
            count = readInt2( buffer, bufferIndex ) & 0xFFFFL;
            return 8;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            authMethod = null;
            InputStream errorStream = connection.getErrorStream();
            if (errorStream != null && errorStream.available() != 0) {
                int count;
                byte[] buf = new byte[1024];
                while ((count = errorStream.read(buf, 0, 1024)) != -1);
            }
            String authHeader;
            if (response == HTTP_UNAUTHORIZED) {
                authHeader = "WWW-Authenticate";
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnum.java

        }
    
    
        public FileEntry[] getEntries () {
            netdfs.DfsEnumArray200 a200 = (netdfs.DfsEnumArray200) this.info.e;
            SmbShareInfo[] entries = new SmbShareInfo[a200.count];
            for ( int i = 0; i < a200.count; i++ ) {
                entries[ i ] = new SmbShareInfo(a200.s[ i ].dfs_name, 0, null);
            }
            return entries;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    	 *    [size_is(SubAuthorityCount)] ULONG SubAuthority[*];
    	 * } SID, *PSID;
    	 */
    
    	typedef struct {
    		uint8_t revision;
    		uint8_t sub_authority_count;
    		uint8_t identifier_authority[6];
    		[size_is(sub_authority_count)] uint32_t sub_authority[*];
    	} sid_t;
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/transport/Transport.java

        protected final Map<Long, Response> response_map = new ConcurrentHashMap<>(10);
        private final AtomicLong usageCount = new AtomicLong(1);
    
    
        /**
         * @return session increased usage count
         */
        public Transport acquire () {
            long usage = this.usageCount.incrementAndGet();
            if ( log.isTraceEnabled() ) {
                log.trace("Acquire transport " + usage + " " + this);
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/rpc.java

            public byte revision;
            public byte sub_authority_count;
            public byte[] identifier_authority;
            public int[] sub_authority;
    
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
                int _sub_authoritys = sub_authority_count;
                _dst.enc_ndr_long(_sub_authoritys);
                _dst.enc_ndr_small(revision);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbConstants.java

     * 
     * @author mbechler
     *
     * @internal
     */
    @SuppressWarnings ( "javadoc" )
    public interface SmbConstants {
    
        static final int DEFAULT_PORT = 445;
    
        static final int DEFAULT_MAX_MPX_COUNT = 10;
        static final int DEFAULT_RESPONSE_TIMEOUT = 30000;
        static final int DEFAULT_SO_TIMEOUT = 35000;
        static final int DEFAULT_RCV_BUF_SIZE = 0xFFFF;
        static final int DEFAULT_SND_BUF_SIZE = 0xFFFF;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

         * @return negotiated send buffer size
         */
        public int getNegotiatedSendBufferSize () {
            return this.snd_buf_size;
        }
    
    
        /**
         * 
         * @return negotiated multiplex count
         */
        public int getNegotiatedMpxCount () {
            return this.maxMpxCount;
        }
    
    
        /**
         * 
         * @return negotiated session key
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbComWrite.java

            dst[dstIndex++] = (byte)0x01; /* BufferFormat */
            writeInt2( count, dst, dstIndex ); /* DataLength? */
            dstIndex += 2;
            System.arraycopy( b, off, dst, dstIndex, count );
            dstIndex += count;
    
            return dstIndex - start;
        }
        int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) {
            return 0;
        }
        int readBytesWireFormat( byte[] buffer, int bufferIndex ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    	typedef struct {
    		[string] wchar_t *netname;
    	} ShareInfo0;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo0 *array;
    	} ShareInfoCtr0;
    
    	typedef struct {
    		[string] wchar_t *netname;
    		int type;
    		[string] wchar_t *remark;
    	} ShareInfo1;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo1 *array;
    	} ShareInfoCtr1;
    
    	typedef struct {
    		[string] wchar_t *netname;
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 2.2K bytes
    - Viewed (0)
Back to top