Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 284 for geturl (0.14 sec)

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

        }
    
    
        /**
         * @return the service
         */
        @Override
        public final String getService () {
            return this.service;
        }
    
    
        /**
         * @return the nativeFileSystem
         */
        public final String getNativeFileSystem () {
            return this.nativeFileSystem;
        }
    
    
        /**
         * @return the supportSearchBits
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComReadAndXResponse.java

        }
    
    
        /**
         * @return the dataLength
         */
        public final int getDataLength () {
            return this.dataLength;
        }
    
    
        /**
         * @return the dataOffset
         */
        public final int getDataOffset () {
            return this.dataOffset;
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/SmbNegotiationResponse.java

        /**
         * @return whether signing has been negotiated
         */
        boolean isSigningNegotiated ();
    
    
        /**
         * @param cap
         * @return whether capability is negotiated
         */
        boolean haveCapabilitiy ( int cap );
    
    
        /**
         * @return the send buffer size
         */
        int getSendBufferSize ();
    
    
        /**
         * @return the receive buffer size
         */
        int getReceiveBufferSize ();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/AllTests.java

                    return cfg;
                }
            });
    
            MUTATIONS.put("forceSigning", new TestMutation() {
    
                @Override
                public Map<String, String> mutate ( Map<String, String> cfg ) {
                    cfg.put("jcifs.smb.client.signingPreferred", "true");
                    cfg.put("jcifs.smb.client.signingEnforced", "true");
                    return cfg;
                }
            });
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 14.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportInternal.java

        /**
         * @param cap
         * @return whether the transport has the given capability
         * @throws SmbException
         */
        boolean hasCapability ( int cap ) throws SmbException;
    
    
        /**
         * @return whether the transport has been disconnected
         */
        boolean isDisconnected ();
    
    
        /**
         * @param hard
         * @param inuse
         * @return whether the connection was in use
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                    if( b > 0xFF ) {
                        return (NbtAddress)doNameQuery( new Name( host, type, scope ), svr );
                    }
                    IP = ( IP << 8 ) + b;
                    hitDots++;
                }
                if( hitDots != 4 || host.endsWith( "." )) {
                    return (NbtAddress)doNameQuery( new Name( host, type, scope ), svr );
                }
                return new NbtAddress( UNKNOWN_NAME, IP, false, B_NODE );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java

            super(config);
        }
    
    
        /**
         * @return the notifyInformation
         */
        @Override
        public final List<FileNotifyInformation> getNotifyInformation () {
            return this.notifyInformation;
        }
    
    
        @Override
        protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SID.java

    
        /**
         * 
         * @return domain SID
         */
        SID getDomainSid ();
    
    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
         * 
         * @return the RID
         */
        int getRid ();
    
    
        /**
         * Return a String representing this SID ideal for display to
         * users. This method should return the same text that the ACL
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmContext.java

            return this.isEstablished;
        }
    
    
        /**
         * @return the server's challenge
         */
        public byte[] getServerChallenge () {
            return this.serverChallenge;
        }
    
    
        @Override
        public byte[] getSigningKey () {
            return this.masterKey;
        }
    
    
        @Override
        public String getNetbiosName () {
            return this.netbiosName;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java

        /**
         * @return request was handled asynchronously
         */
        boolean isResponseAsync ();
    
    
        /**
         * 
         * @return next chained message
         */
        @Override
        CommonServerMessageBlockRequest getNext ();
    
    
        /**
         * 
         * @return the following message
         */
        CommonServerMessageBlockRequest split ();
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
Back to top