mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-20 01:58:59 +08:00
f2ed9e9656
1999-05-26 Bryce McKinlay <bryce@albatross.co.nz> * java/net/DatagramSocket.java (getSoTimeout): Verify class type. * java/net/DatagramSocketImpl.java (getOption): Made abstract. (setOption): Made abstract. * java/net/PlainDatagramSocketImpl.java: Mirror SocketOptions fields to avoid cpp conflicts in native code. * java/net/PlainSocketImpl.java: Mirror SocketOptions fields to avoid cpp conflicts in native code. * java/net/ServerSocket.java (toString): Prepended "ServerSocket". * java/net/Socket.java (getLocalAddress): Implemented. (setTcpNoDelay): Implemented. (getTcpNoDelay): Implemented. (setSoLinger): Implemented. (getSoLinger): Implemented. (getSoTimeout): Verify class type. (setSendBufferSize): Implemented. (getSendBufferSize): Implemented. (setReceiveBufferSize): Implemented. (getReceiveBufferSize): Implemented. (toString): Prepended "Socket". * java/net/SocketImpl.java (toString): Rewritten. (getOption): Made abstract. (setOption): Made abstract. * java/net/natPlainSocketImpl.cc (connect): Set localport properly. (setOption): Implemented. (getOption): Implemented. 1999-05-26 Warren Levy <warrenl@cygnus.com> * java/net/DatagramSocket.java (DatagramSocket): Get local host address when null. Set SO_REUSEADDR for multicasts. (getSoTimeout): Implemented. (setSoTimeout): Implemented. * java/net/DatagramSocketImpl.java: Implement SocketOptions interface. * java/net/MulticastSocket.java (getInterface): Implemented. (setInterface): Implemented. (setTimeToLive): Check for invalid ttl. (joinGroup): Verify multicast address and security. (leaveGroup): Verify multicast address and security. (send): Implemented. * java/net/PlainDatagramSocketImpl.java (timeout): Added. (iface): Added. (ttl): Added. (setOption): Added. (getOption): Added. (mcastGrp): Added. (getTTL): Implemented as non-native. (setTTL): ditto. (join): ditto. (leave): ditto. * java/net/ServerSocket.java (setSoTimeout): Implemented. (getSoTimeout): Implemented. (setSocketFactory): Made synchronized. * java/net/Socket.java (setSoTimeout): Implemented. (getSoTimeout): Implemented. (close): Made synchronized. (setSocketImplFactory): Made synchronized. * java/net/SocketImpl.java: Implement SocketOptions interface. * java/net/natInetAddress.cc: Corrected module name at top of file. * java/net/natPlainDatagramSocketImpl.cc (McastReq): Added union. (bind): Added FIXME. (peek): Implemented. (setTTL): Removed. (getTTL): Removed. (join): Removed. (leave): Removed. (mcastGrp): Added. (setOption): Implemented for SO_REUSEADDR. (getOption): Implemented for SO_REUSEADDR. From-SVN: r27184
111 lines
2.4 KiB
Java
111 lines
2.4 KiB
Java
// ServerSocket.java
|
|
|
|
/* Copyright (C) 1999 Cygnus Solutions
|
|
|
|
This file is part of libgcj.
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
details. */
|
|
|
|
/**
|
|
* @author Per Bothner <bothner@cygnus.com>
|
|
* @date January 6, 1999.
|
|
*/
|
|
|
|
/** Written using on-line Java Platform 1.2 API Specification.
|
|
* Status: I believe all methods are implemented.
|
|
*/
|
|
|
|
package java.net;
|
|
import java.io.*;
|
|
|
|
public class ServerSocket
|
|
{
|
|
static SocketImplFactory factory;
|
|
SocketImpl impl;
|
|
|
|
public ServerSocket (int port)
|
|
throws java.io.IOException
|
|
{
|
|
this(port, 5);
|
|
}
|
|
|
|
public ServerSocket (int port, int backlog)
|
|
throws java.io.IOException
|
|
{
|
|
this(port, backlog, InetAddress.getLocalHost());
|
|
}
|
|
|
|
public ServerSocket (int port, int backlog, InetAddress bindAddr)
|
|
throws java.io.IOException
|
|
{
|
|
if (factory == null)
|
|
this.impl = new PlainSocketImpl();
|
|
else
|
|
this.impl = factory.createSocketImpl();
|
|
SecurityManager s = System.getSecurityManager();
|
|
if (s != null)
|
|
s.checkListen(port);
|
|
impl.create(true);
|
|
impl.bind(bindAddr, port);
|
|
impl.listen(backlog);
|
|
}
|
|
|
|
public InetAddress getInetAddress()
|
|
{
|
|
return impl.getInetAddress();
|
|
}
|
|
|
|
public int getLocalPort()
|
|
{
|
|
return impl.getLocalPort();
|
|
}
|
|
|
|
public Socket accept () throws IOException
|
|
{
|
|
Socket s = new Socket(Socket.factory == null ? new PlainSocketImpl()
|
|
: Socket.factory.createSocketImpl());
|
|
implAccept (s);
|
|
return s;
|
|
}
|
|
|
|
protected final void implAccept (Socket s) throws IOException
|
|
{
|
|
impl.accept(s.impl);
|
|
}
|
|
|
|
public void close () throws IOException
|
|
{
|
|
impl.close();
|
|
}
|
|
|
|
public synchronized void setSoTimeout (int timeout) throws SocketException
|
|
{
|
|
if (timeout < 0)
|
|
throw new IllegalArgumentException("Invalid timeout: " + timeout);
|
|
|
|
impl.setOption(SocketOptions.SO_TIMEOUT, new Integer(timeout));
|
|
}
|
|
|
|
public synchronized int getSoTimeout () throws SocketException
|
|
{
|
|
Object timeout = impl.getOption(SocketOptions.SO_TIMEOUT);
|
|
if (timeout instanceof Integer)
|
|
return ((Integer)timeout).intValue();
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
public String toString ()
|
|
{
|
|
return "ServerSocket" + impl.toString();
|
|
}
|
|
|
|
public static synchronized void setSocketFactory (SocketImplFactory fac)
|
|
throws IOException
|
|
{
|
|
factory = fac;
|
|
}
|
|
}
|