Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for nextCalledName (0.13 sec)

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

         * @param tc
         *            context to use
         * 
         * @return guessed alternate name
         */
        @Override
        public String nextCalledName ( CIFSContext tc ) {
            if ( this.addr instanceof NbtAddress ) {
                return ( (NbtAddress) this.addr ).nextCalledName(tc);
            }
            else if ( this.calledName != NbtAddress.SMBSERVER_NAME ) {
                this.calledName = NbtAddress.SMBSERVER_NAME;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Address.java

        /**
         * Guess next called name to try for session establishment. These
         * methods are used by the smb package.
         * 
         * @param tc
         * 
         * @return guessed name
         */
        String nextCalledName ( CIFSContext tc );
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 03 13:22:30 UTC 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 nextCalledName() {
            if( addr instanceof NbtAddress ) {
                return ((NbtAddress)addr).nextCalledName();
            } else if( calledName != NbtAddress.SMBSERVER_NAME ) {
                calledName = NbtAddress.SMBSERVER_NAME;
                return calledName;
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NbtAddress.java

            return this.calledName;
        }
    
    
        /**
         * 
         * @param tc
         *            context to use
         * @return net name to try
         */
        @Override
        public String nextCalledName ( CIFSContext tc ) {
    
            if ( this.calledName == this.hostName.name ) {
                this.calledName = SMBSERVER_NAME;
            }
            else if ( SMBSERVER_NAME.equals(this.calledName) ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                    default:
                        disconnect( true );
                        throw new NbtException( NbtException.ERR_SSN_SRVC, 0 );
                }
            } while(( calledName.name = address.nextCalledName()) != null );
    
            throw new IOException( "Failed to establish session with " + address );
        }
        private void negotiate( int port, ServerMessageBlock resp ) throws IOException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                    case 0x1C:
                    case 0x1D:
                        calledName = SMBSERVER_NAME;
                }
            }
    
            return calledName;
        }
        public String nextCalledName() {
    
            if( calledName == hostName.name ) {
                calledName = SMBSERVER_NAME;
            } else if( calledName == SMBSERVER_NAME ) {
                NbtAddress[] addrs;
    
                try {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

                default:
                    disconnect(true);
                    throw new NbtException(NbtException.ERR_SSN_SRVC, 0);
                }
            }
            while ( ( calledName.name = this.address.nextCalledName(tc) ) != null );
    
            throw new IOException("Failed to establish session with " + this.address);
        }
    
    
        private SmbNegotiation negotiate ( int prt ) throws IOException {
            /*
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top