Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isUnknown (0.2 sec)

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

                 */
                if ( !addrFound && this.queryAddress.hostName.hexCode == hexCode
                        && ( this.queryAddress.hostName.isUnknown() || this.queryAddress.hostName.name.equals(n) ) ) {
    
                    if ( this.queryAddress.hostName.isUnknown() ) {
                        this.queryAddress.hostName = new Name(this.config, n, hexCode, scope);
                    }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NbtAddress.java

         * encountered. The below methods allow state to be populated when requested
         * in a lazy fashon.
         */
    
        void checkData ( CIFSContext tc ) throws UnknownHostException {
            if ( this.hostName.isUnknown() ) {
                tc.getNameServiceClient().getNbtAllByAddress(this);
            }
        }
    
    
        void checkNodeStatusData ( CIFSContext tc ) throws UnknownHostException {
    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)
  3. src/main/java/jcifs/netbios/Name.java

                this.srcHashCode = ( (Name) name ).srcHashCode;
            }
        }
    
    
        /**
         * 
         * @return whether this is the unknown address
         */
        public boolean isUnknown () {
            return "0.0.0.0".equals(this.name) && this.hexCode == 0 && this.scope == null;
        }
    
    
        int writeWireFormat ( byte[] dst, int dstIndex ) {
            // write 0x20 in first byte
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.7K bytes
    - Viewed (0)
Back to top