Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for called (0.25 sec)

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

                    break;
                case NOT_LISTENING_CALLED:
                    result += "Not listening on called name";
                    break;
                case NOT_LISTENING_CALLING:
                    result += "Not listening for calling name";
                    break;
                case CALLED_NOT_PRESENT:
                    result += "Called name not present";
                    break;
                case NO_RESOURCES:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Address.java

         */
        InetAddress toInetAddress () throws UnknownHostException;
    
    
        /**
         * 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
    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/netbios/UniAddress.java

         */
        @Override
        public boolean equals ( Object obj ) {
            return obj instanceof UniAddress && this.addr.equals( ( (UniAddress) obj ).addr);
        }
    
    
        /**
         * Guess first called name to try for session establishment. This
         * method is used exclusively by the <tt>jcifs.smb</tt> package.
         * 
         * @return the guessed name
         */
        @Override
        public String firstCalledName () {
    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)
  4. src/main/java/jcifs/smb1/util/LogStream.java

        public LogStream( PrintStream stream ) {
            super( stream );
        }
    
        public static void setLevel( int level ) {
            LogStream.level = level;
        }
        /**
         * This must be called before <tt>getInstance</tt> is called or
         * it will have no effect.
         */
        public static void setInstance( PrintStream stream ) {
            inst = new LogStream( stream );
        }
        public static LogStream getInstance() {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/Config.java

     * instantiated. Similar to <code>System</code> properties the namespace
     * is global therefore property names should be unique. Before use,
     * the <code>load</code> method should be called with the name of a
     * <code>Properties</code> file (or <code>null</code> indicating no
     * file) to initialize the <code>Config</code>. The <code>System</code>
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/Handler.java

        /**
         * Sets the URL stream handler factory for the environment.  This
         * allows specification of the factory used in creating underlying
         * stream handlers.  This can be called once per JVM instance.
         *
         * @param factory The URL stream handler factory.
         */
        public static void setURLStreamHandlerFactory(
                URLStreamHandlerFactory factory) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/UniAddress.java

        }
    /*
        public boolean equals( Object obj ) {
            return obj instanceof UniAddress && addr.hashCode() == obj.hashCode();
        }
    */
    
        /**
         * Guess first called name to try for session establishment. This
         * method is used exclusively by the <tt>jcifs.smb1.smb1</tt> package.
         */
    
        public String firstCalledName() {
            if( addr instanceof NbtAddress ) {
    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)
  8. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                        int errorCode = (int)( in.read() & 0xFF );
                        switch (errorCode) {
                            case NbtException.CALLED_NOT_PRESENT:
                            case NbtException.NOT_LISTENING_CALLED:
                                socket.close();
                                break;
                            default:
                                disconnect( true );
    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)
  9. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

            this.pipe = pipe;
            this.transact = ( pipe.getPipeType() & SmbPipeResource.PIPE_TYPE_TRANSACT ) == SmbPipeResource.PIPE_TYPE_TRANSACT;
            this.call = ( pipe.getPipeType() & SmbPipeResource.PIPE_TYPE_CALL ) == SmbPipeResource.PIPE_TYPE_CALL;
            this.openFlags = ( pipe.getPipeType() & 0xFFFF00FF ) | SmbConstants.O_EXCL;
            this.access = ( pipe.getPipeType() & 7 ) | 0x20000;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Apr 13 17:05:22 GMT 2020
    - 10.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NbtException.java

                        case NOT_LISTENING_CALLED:
                            result += "Not listening on called name";
                            break;
                        case NOT_LISTENING_CALLING:
                            result += "Not listening for calling name";
                            break;
                        case CALLED_NOT_PRESENT:
                            result += "Called name not present";
                            break;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.9K bytes
    - Viewed (0)
Back to top