home *** CD-ROM | disk | FTP | other *** search
- package sun.net.www.protocol.gopher;
-
- import java.net.URL;
- import java.net.URLConnection;
- import java.net.URLStreamHandler;
- import sun.net.www.protocol.http.HttpURLConnection;
-
- public class Handler extends URLStreamHandler {
- public URLConnection openConnection(URL var1) {
- return (URLConnection)(GopherClient.useGopherProxy && GopherClient.gopherProxyHost != null && GopherClient.gopherProxyHost.length() > 0 ? new HttpURLConnection(var1, GopherClient.gopherProxyHost, GopherClient.gopherProxyPort) : new GopherURLConnection(var1));
- }
- }
-