Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for firstCalledName (0.24 sec)

  1. src/main/java/jcifs/netbios/UniAddress.java

         * method is used exclusively by the <tt>jcifs.smb</tt> package.
         * 
         * @return the guessed name
         */
        @Override
        public String firstCalledName () {
            if ( this.addr instanceof NbtAddress ) {
                return ( (NbtAddress) this.addr ).firstCalledName();
            }
    
            this.calledName = ( (InetAddress) this.addr ).getHostName();
            if ( isDotQuadIP(this.calledName) ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Address.java

    
        /**
         * Guess called name to try for session establishment. These
         * methods are used by the smb package.
         * 
         * @return guessed name
         */
        String firstCalledName ();
    
    
        /**
         * Guess next called name to try for session establishment. These
         * methods are used by the smb package.
         * 
         * @param tc
         * 
         * @return guessed name
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 03 13:22:30 GMT 2018
    - 2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/UniAddress.java

         * method is used exclusively by the <tt>jcifs.smb1.smb1</tt> package.
         */
    
        public String firstCalledName() {
            if( addr instanceof NbtAddress ) {
                return ((NbtAddress)addr).firstCalledName();
            } else {
                calledName = ((InetAddress)addr).getHostName();
                if( isDotQuadIP( calledName )) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NbtAddress.java

        /**
         * Guess next called name to try for session establishment. These
         * methods are used by the smb package.
         * 
         * @return guessed name
         */
        @Override
        public String firstCalledName () {
    
            this.calledName = this.hostName.name;
    
            if ( Character.isDigit(this.calledName.charAt(0)) ) {
                int i, len, dots;
                char[] data;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                    NtlmPasswordAuthentication.NULL.equals( auth ) == false;
        }
    
        void ssn139() throws IOException {
            Name calledName = new Name( address.firstCalledName(), 0x20, null );
            do {
    /* These Socket constructors attempt to connect before SO_TIMEOUT can be applied
                if (localAddr == null) {
                    socket = new Socket( address.getHostAddress(), 139 );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            isDataFromNodeStatus = true;
        }
    
    /* Guess next called name to try for session establishment. These
     * methods are used by the smb package.
     */
    
        public String firstCalledName() {
    
            calledName = hostName.name;
    
            if( Character.isDigit( calledName.charAt( 0 ))) {
                int i, len, dots;
                char[] data;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

        }
    
    
        void ssn139 () throws IOException {
            CIFSContext tc = this.transportContext;
            Name calledName = new Name(tc.getConfig(), this.address.firstCalledName(), 0x20, null);
            do {
                this.socket = new Socket();
                if ( this.localAddr != null )
                    this.socket.bind(new InetSocketAddress(this.localAddr, this.localPort));
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top