- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getLocalPort (0.09 sec)
-
mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt
private val remotePort: Int = 1234, ) : Socket() { override fun getInetAddress() = remoteAddress override fun getLocalAddress() = localAddress override fun getLocalPort() = localPort override fun getPort() = remotePort }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.1K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
override fun getKeepAlive(): Boolean { return delegate!!.keepAlive } override fun getLocalAddress(): InetAddress { return delegate!!.localAddress } override fun getLocalPort(): Int { return delegate!!.localPort } @Throws(IOException::class) override fun getOutputStream(): OutputStream { return delegate!!.outputStream } override fun getPort(): Int {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.netbiosHostname; } @Override public InetAddress getLocalAddr () { return this.smbLocalAddress; } @Override public int getLocalPort () { return this.smbLocalPort; } @Override public int getConnTimeout () { return this.smbConnectionTimeout; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
*/ int getResponseTimeout (); /** * * Property <tt>jcifs.smb.client.lport</tt> (int) * * @return local port to use for outgoing connections */ int getLocalPort (); /** * * Property <tt>jcifs.smb.client.laddr</tt> (string) * * @return local address to use for outgoing connections */ InetAddress getLocalAddr ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)