- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for svr (0.01 sec)
-
src/main/java/jcifs/netbios/NameServiceClientImpl.java
} NbtAddress doNameQuery ( Name name, InetAddress svr ) throws UnknownHostException { NbtAddress addr; if ( name.hexCode == 0x1d && svr == null ) { svr = this.baddr; // bit of a hack but saves a lookup } name.srcHashCode = svr != null ? svr.hashCode() : 0; addr = getCachedAddress(name); if ( addr == null ) {
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/smb1/netbios/NbtAddress.java
} static NbtAddress doNameQuery( Name name, InetAddress svr ) throws UnknownHostException { NbtAddress addr; if( name.hexCode == 0x1d && svr == null ) { svr = CLIENT.baddr; // bit of a hack but saves a lookup } name.srcHashCode = svr != null ? svr.hashCode() : 0; addr = getCachedAddress( name );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 30.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/DelegatingNameServiceClient.java
return this.nscl.getNbtByName(host, type, scope, svr); } @Override public NetbiosAddress[] getNbtAllByName ( String host, int type, String scope, InetAddress svr ) throws UnknownHostException { return this.nscl.getNbtAllByName(host, type, scope, svr); } @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 scope * the scope of the name * @param svr * server to query * * @return the resolved addresses * @throws UnknownHostException */ NetbiosAddress[] getNbtAllByName ( String host, int type, String scope, InetAddress svr ) throws UnknownHostException; /**
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/smb1/UniAddress.java
static NbtAddress lookupServerOrWorkgroup( String name, InetAddress svr ) throws UnknownHostException { Sem sem = new Sem( 2 ); int type = NbtAddress.isWINS( svr ) ? 0x1b : 0x1d; QueryThread q1x = new QueryThread( sem, name, type, null, svr ); QueryThread q20 = new QueryThread( sem, name, 0x20, null, svr ); q1x.setDaemon( true );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 16.2K bytes - Viewed (0)