FileDocCategorySizeDatePackage
Handler.javaAPI DocExample301Sat Sep 09 20:53:48 BST 2000com.macfaq.net.www.protocol.daytime

Handler.java

package com.macfaq.net.www.protocol.daytime;

import java.net.*;
import java.io.*;

public class Handler extends URLStreamHandler {

  public int getDefaultPort() {
    return 13;
  }

  protected URLConnection openConnection(URL u) throws IOException {
    return new DaytimeURLConnection(u);
  }

}