*
* @exception SocketException If an error occurs
*/
- protected native void bind(int lport, InetAddress laddr)
- throws SocketException;
+ protected native void bind(int port, InetAddress addr)
+ throws SocketException;
- protected native void connect (InetAddress i, int port)
- throws SocketException;
+ protected native void connect(InetAddress addr, int port)
+ throws SocketException;
- protected native void disconnect ();
+ protected native void disconnect();
/**
* Creates a new datagram socket
*/
protected native void create() throws SocketException;
- protected native int peek(InetAddress i) throws IOException;
+ protected native int peek(InetAddress addr) throws IOException;
- protected native int peekData (DatagramPacket dp) throws IOException;
+ protected native int peekData(DatagramPacket packet) throws IOException;
/**
* Sets the Time to Live value for the socket
*
* @exception IOException IOException If an error occurs
*/
- protected native void receive(DatagramPacket p) throws IOException;
+ protected native void receive(DatagramPacket packet) throws IOException;
/**
* Sets the value of an option on the socket
*
* @exception SocketException If an error occurs
*/
- public native void setOption(int optID, Object value) throws SocketException;
+ public native void setOption(int option_id, Object val)
+ throws SocketException;
/**
* Retrieves the value of an option on the socket
*
* @exception SocketException If an error occurs
*/
- public native Object getOption(int optID) throws SocketException;
-
+ public native Object getOption(int option_id)
+ throws SocketException;
+
/**
* Joins or leaves a broadcasting group on a given network interface.
* If the network interface is <code>null</code> the group is join/left on
*
* @exception IOException If an error occurs.
*/
- private native void mcastGrp(InetAddress inetAddr,
- NetworkInterface netIf,
+ private native void mcastGrp(InetAddress inetAddr, NetworkInterface netIf,
boolean join)
throws IOException;
*
* @exception IOException If an error occurs
*/
- protected void join(InetAddress inetaddr) throws IOException
+ protected void join(InetAddress addr) throws IOException
{
- mcastGrp(inetaddr, null, true);
+ mcastGrp(addr, null, true);
}
/**
*
* @exception IOException If an error occurs
*/
- protected void leave(InetAddress inetaddr) throws IOException
+ protected void leave(InetAddress addr) throws IOException
{
- mcastGrp(inetaddr, null, false);
+ mcastGrp(addr, null, false);
}
- protected void joinGroup (SocketAddress mcastaddr, NetworkInterface netIf)
- throws IOException
+ protected void joinGroup(SocketAddress mcastaddr, NetworkInterface netIf)
+ throws IOException
{
- mcastGrp(((InetSocketAddress)mcastaddr).getAddress(), netIf, true);
+ mcastGrp(((InetSocketAddress) mcastaddr).getAddress(), netIf, true);
}
- protected void leaveGroup (SocketAddress mcastaddr, NetworkInterface netIf)
- throws IOException
+ protected void leaveGroup(SocketAddress mcastaddr, NetworkInterface netIf)
+ throws IOException
{
- mcastGrp(((InetSocketAddress)mcastaddr).getAddress(), netIf, false);
+ mcastGrp(((InetSocketAddress) mcastaddr).getAddress(), netIf, false);
}
}