Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for IpAddress (0.48 sec)

  1. src/main/java/jcifs/internal/witness/WitnessRegisterMessage.java

        public String getShareName() {
            return shareName;
        }
    
        /**
         * Sets the IP address of the client.
         *
         * @param ipAddress the IP address
         */
        public void setIpAddress(String ipAddress) {
            this.ipAddress = ipAddress;
        }
    
        /**
         * Sets the IP address from an InetAddress.
         *
         * @param address the InetAddress
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

          else -> verifyHostname(host, certificate)
        }
    
      /** Returns true if [certificate] matches [ipAddress]. */
      private fun verifyIpAddress(
        ipAddress: String,
        certificate: X509Certificate,
      ): Boolean {
        val canonicalIpAddress = ipAddress.toCanonicalHost()
    
        return getSubjectAltNames(certificate, ALT_IPA_NAME).any {
          canonicalIpAddress == it.toCanonicalHost()
        }
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  3. okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt

            .addSubjectAlternativeName("cash.app")
            .build()
        val certificate = heldCertificate.certificate
        assertThat(certificate.subjectAlternativeNames.toList()).containsExactly(
          listOf(GeneralName.iPAddress, "1.1.1.1"),
          listOf(GeneralName.dNSName, "cash.app"),
        )
      }
    
      @Test
      fun commonName() {
        val heldCertificate =
          HeldCertificate
            .Builder()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

            int ipCount = buf.dec_ndr_long();
            List<String> ipAddresses = new ArrayList<>(ipCount);
    
            for (int i = 0; i < ipCount; i++) {
                String ipAddress = decodeWideStringPointer(buf);
                ipAddresses.add(ipAddress);
            }
            message.setIpAddresses(ipAddresses);
        }
    
        /**
         * Decodes a wide string pointer from NDR format.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

       *   directoryName                   [4]     Name,
       *   ediPartyName                    [5]     EDIPartyName,
       *   uniformResourceIdentifier       [6]     IA5String,
       *   iPAddress                       [7]     OCTET STRING,
       *   registeredID                    [8]     OBJECT IDENTIFIER
       * }
       * ```
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt

            .Builder()
            .body("abc")
            .build(),
        )
        val ipAddress = InetAddress.getLoopbackAddress().hostAddress
        val call =
          client.newCall(
            Request
              .Builder()
              .url(
                server
                  .url("/")
                  .newBuilder()
                  .host(ipAddress!!)
                  .build(),
              ).build(),
          )
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 60.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Added a new IPAddress object kind
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jul 17 07:48:22 UTC 2024
    - 466.3K bytes
    - Viewed (2)
Back to top