Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getNodeStatus (0.27 sec)

  1. src/test/java/jcifs/tests/DelegatingNameServiceClient.java

    
        @Override
        public NetbiosName getUnknownName () {
            return this.nscl.getUnknownName();
        }
    
    
        @Override
        public NetbiosAddress[] getNodeStatus ( NetbiosAddress nbtAddress ) throws UnknownHostException {
            return this.nscl.getNodeStatus(nbtAddress);
        }
    
    
        @Override
        public NetbiosAddress getNbtByName ( String host ) throws UnknownHostException {
            return this.nscl.getNbtByName(host);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/NameServiceClient.java

    
        /**
         * @param nbtAddress
         * @return the node status responses
         * @throws UnknownHostException
         */
        NetbiosAddress[] getNodeStatus ( NetbiosAddress nbtAddress ) throws UnknownHostException;
    
    
        /**
         * Lookup addresses for the given <tt>hostname</tt>.
         * 
         * @param hostname
         * @param possibleNTDomainOrWorkgroup
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     */
    
        public static NbtAddress[] getAllByAddress( NbtAddress addr )
                                                    throws UnknownHostException {
            try {
                NbtAddress[] addrs = CLIENT.getNodeStatus( addr );
                cacheAddressArray( addrs );
                return addrs;
            } catch( UnknownHostException uhe ) {
                throw new UnknownHostException( "no name with type 0x" +
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                            break;
                    }
                } catch( IOException ioe ) {
                }
            }
            throw new UnknownHostException( name.name );
        }
        NbtAddress[] getNodeStatus( NbtAddress addr ) throws UnknownHostException {
            int n, srcHashCode;
            NodeStatusRequest request;
            NodeStatusResponse response;
    
            response = new NodeStatusResponse( addr );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    log.debug("Failed to lookup name", ioe);
                }
            }
            throw new UnknownHostException(name.name);
        }
    
    
    
        @Override
        public NbtAddress[] getNodeStatus ( NetbiosAddress addr ) throws UnknownHostException {
            NodeStatusResponse response = new NodeStatusResponse(this.transportContext.getConfig(), addr.unwrap(NbtAddress.class));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NbtAddress.java

            }
            else if ( SMBSERVER_NAME.equals(this.calledName) ) {
                NetbiosAddress[] addrs;
    
                try {
                    addrs = tc.getNameServiceClient().getNodeStatus(this);
                    if ( this.getNameType() == 0x1D ) {
                        for ( int i = 0; i < addrs.length; i++ ) {
                            if ( addrs[ i ].getNameType() == 0x20 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
Back to top