- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for firstCalledName (0.23 sec)
-
src/main/java/jcifs/netbios/UniAddress.java
* method is used exclusively by the <tt>jcifs.smb</tt> package. * * @return the guessed name */ @Override public String firstCalledName () { if ( this.addr instanceof NbtAddress ) { return ( (NbtAddress) this.addr ).firstCalledName(); } this.calledName = ( (InetAddress) this.addr ).getHostName(); if ( isDotQuadIP(this.calledName) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/Address.java
/** * 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 * * @return guessed name */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 03 13:22:30 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
* method is used exclusively by the <tt>jcifs.smb1.smb1</tt> package. */ public String firstCalledName() { if( addr instanceof NbtAddress ) { return ((NbtAddress)addr).firstCalledName(); } else { calledName = ((InetAddress)addr).getHostName(); if( isDotQuadIP( calledName )) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 16.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
/** * Guess next called name to try for session establishment. These * methods are used by the smb package. * * @return guessed name */ @Override public String firstCalledName () { this.calledName = this.hostName.name; if ( Character.isDigit(this.calledName.charAt(0)) ) { int i, len, dots; char[] data;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 15.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
NtlmPasswordAuthentication.NULL.equals( auth ) == false; } void ssn139() throws IOException { Name calledName = new Name( address.firstCalledName(), 0x20, null ); do { /* These Socket constructors attempt to connect before SO_TIMEOUT can be applied if (localAddr == null) { socket = new Socket( address.getHostAddress(), 139 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
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/main/java/jcifs/smb/SmbTransportImpl.java
} void ssn139 () throws IOException { CIFSContext tc = this.transportContext; Name calledName = new Name(tc.getConfig(), this.address.firstCalledName(), 0x20, null); do { this.socket = new Socket(); if ( this.localAddr != null ) this.socket.bind(new InetSocketAddress(this.localAddr, this.localPort));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)