Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNbtByName (0.05 sec)

  1. src/main/java/jcifs/NameServiceClient.java

         *            server to query
         * @return the resolved address
         * @throws java.net.UnknownHostException
         *             if there is an error resolving the name
         */
        NetbiosAddress getNbtByName(String host, int type, String scope, InetAddress svr) throws UnknownHostException;
    
        /**
         * Determines the address of a host given it's host name. NetBIOS
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmServlet.java

            if (msg != null && (msg.startsWith("NTLM ") || offerBasic && msg.startsWith("Basic "))) {
                if (this.loadBalance) {
                    dc = new UniAddress(getTransportContext().getNameServiceClient().getNbtByName(this.domainController, 0x1C, null));
                } else {
                    dc = getTransportContext().getNameServiceClient().getByName(this.domainController, true);
                }
                NtlmPasswordAuthentication ntlm;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.1K bytes
    - Viewed (1)
Back to top