/[classpath]/classpath/java/net/MulticastSocket.java
ViewVC logotype

Diff of /classpath/java/net/MulticastSocket.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.18 by mkoch, Tue Mar 11 14:35:20 2003 UTC revision 1.19 by mkoch, Sat Jun 7 21:19:02 2003 UTC
# Line 81  public class MulticastSocket extends Dat Line 81  public class MulticastSocket extends Dat
81    public MulticastSocket() throws IOException    public MulticastSocket() throws IOException
82    {    {
83      super(0, null);      super(0, null);
84        setReuseAddress (true);
85    }    }
86    
87    /**    /**
# Line 95  public class MulticastSocket extends Dat Line 96  public class MulticastSocket extends Dat
96    public MulticastSocket(int port) throws IOException    public MulticastSocket(int port) throws IOException
97    {    {
98      super(port, null);      super(port, null);
99        setReuseAddress (true);
100    }    }
101    
102    /**    /**
# Line 111  public class MulticastSocket extends Dat Line 113  public class MulticastSocket extends Dat
113    public MulticastSocket(SocketAddress address) throws IOException    public MulticastSocket(SocketAddress address) throws IOException
114    {    {
115      super(address);      super(address);
116        setReuseAddress (true);
117    }    }
118        
119    /**    /**

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26