- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getNbtAllByAddress (0.12 sec)
-
src/test/java/jcifs/tests/DelegatingNameServiceClient.java
} @Override public NetbiosAddress[] getNbtAllByAddress ( String host ) throws UnknownHostException { return this.nscl.getNbtAllByAddress(host); } @Override public NetbiosAddress[] getNbtAllByAddress ( String host, int type, String scope ) throws UnknownHostException { return this.nscl.getNbtAllByAddress(host, type, scope); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
* * @param addr * the address to query * @return resolved addresses * @throws UnknownHostException * if address cannot be resolved */ NetbiosAddress[] getNbtAllByAddress ( NetbiosAddress addr ) throws UnknownHostException; /** * Retrieve all addresses of a host by it's address. NetBIOS hosts can * have many names for a given IP address. The name and IP address make
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
} @Override public NbtAddress[] getNbtAllByAddress ( String host ) throws UnknownHostException { return getNbtAllByAddress(getNbtByName(host, 0x00, null)); } @Override public NbtAddress[] getNbtAllByAddress ( String host, int type, String scope ) throws UnknownHostException { return getNbtAllByAddress(getNbtByName(host, type, scope)); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
if ( this.hostName.isUnknown() ) { tc.getNameServiceClient().getNbtAllByAddress(this); } } void checkNodeStatusData ( CIFSContext tc ) throws UnknownHostException { if ( this.isDataFromNodeStatus == false ) { tc.getNameServiceClient().getNbtAllByAddress(this); } } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 15.2K bytes - Viewed (0)