Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 80 (0.21 sec)

  1. src/main/java/jcifs/smb1/http/Handler.java

     * handling authentication and passing control to the underlying
     * stream handler.
     */
    public class Handler extends URLStreamHandler {
    
        /**
         * The default HTTP port (<code>80</code>).
         */
        public static final int DEFAULT_HTTP_PORT = 80;
    
        private static final Map PROTOCOL_HANDLERS = new HashMap();
    
        private static final String HANDLER_PKGS_PROPERTY =
                "java.protocol.handler.pkgs";
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/Handler.java

    @Deprecated
    public class Handler extends URLStreamHandler {
    
        private static final Logger log = LoggerFactory.getLogger(Handler.class);
    
        /**
         * The default HTTP port (<code>80</code>).
         */
        public static final int DEFAULT_HTTP_PORT = 80;
    
        private static final Map<String, URLStreamHandler> PROTOCOL_HANDLERS = new HashMap<>();
    
        private static final String HANDLER_PKGS_PROPERTY = "java.protocol.handler.pkgs";
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                        String protocol = url.getProtocol();
                        int port = url.getPort();
                        if (port == -1) {
                            port = "https".equalsIgnoreCase(protocol) ? 443 : 80;
                        }
                        PasswordAuthentication auth =
                                Authenticator.requestPasswordAuthentication(null,
                                        port, protocol, "", authMethod);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                            String protocol = u.getProtocol();
                            int port = u.getPort();
                            if ( port == -1 ) {
                                port = "https".equalsIgnoreCase(protocol) ? 443 : 80;
                            }
                            PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(null, port, protocol, "", this.authMethod);
                            if ( auth == null )
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
Back to top