|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||
java.lang.Object | +--java.net.RawSocket
This class represents a socket for sending and receiving raw packets.
A raw socket is the sending or receiving point for a packet delivery service. Each packet sent or received on a datagram socket is individually addressed and routed. Multiple packets sent from one machine to another may be routed differently, and may arrive in any order.
RawPacket| Constructor Summary | |
RawSocket()
Constructs a raw socket. |
|
RawSocket(InetAddress laddr)
Creates a raw socket, bound to the specified local address. |
|
RawSocket(int protocol)
Constructs a raw socket with the specified protocol ID. |
|
RawSocket(int protocol,
InetAddress laddr)
Creates a raw socket, bound to the specified local address with the specified protocol ID. |
|
| Method Summary | |
void |
close()
Closes this datagram socket. |
int |
getChecksum()
Get the offset at which the checsum is placed in the packet |
int |
getFlowLabel()
Get value of the flow label for this socket, |
InetAddress |
getLocalAddress()
Gets the local address to which the socket is bound. |
int |
getNetAuthenticate()
Get value of the IPV6_AUTH_NETWORK_LEVEL option for this socket, that is the AH policy in tunnel mode that is applied on the socket. |
int |
getNetEncryption()
Get value of the IPV6_ESP_NETWORK_LEVEL option for this socket, that is the ESP policy in tunnel mode that is applied on the socket. |
int |
getReceiveBufferSize()
Get value of the SO_RCVBUF option for this socket, that is the buffer size used by the platform for input on the this Socket. |
int |
getSendBufferSize()
Get value of the SO_SNDBUF option for this socket, that is the buffer size used by the platform for output on the this Socket. |
int |
getSoTimeout()
Retrive setting for SO_TIMEOUT. |
int |
getTrafficClass()
Get value of the traffic class for this socket, |
int |
getTransportAuthenticate()
Get value of the IPV6_AUTH_TRANS_LEVEL option for this socket, that is the AH policy in transport that is applied on the socket. |
int |
getTransportEncryption()
Get value of the IPV6_ESP_TRANS_LEVEL option for this socket, that is the ESP policy in transport mode that is applied on the socket. |
void |
receive(RawPacket p)
Receives a raw packet from this socket. |
void |
send(RawPacket p)
Sends a raw packet from this socket. |
void |
setChecksum(int offset)
Activate the checksum option and situates it a the specified offset. |
void |
setFlowLabel(int value)
Set value of the flow label for this socket, |
void |
setNetAuthenticate(int value)
Set value of the IPV6_AH_NETWORK_LEVEL option for this socket, that is the ESP policy in tunnel mode to apply on the socket. |
void |
setNetEncryption(int value)
Set value of the IPV6_ESP_NETWORK_LEVEL option for this socket, that is the ESP policy in tunnel mode to apply on the socket. |
void |
setReceiveBufferSize(int size)
Sets the SO_RCVBUF option to the specified value for this DatagramSocket. |
void |
setSendBufferSize(int size)
Sets the SO_SNDBUF option to the specified value for this DatagramSocket. |
void |
setSoTimeout(int timeout)
Enable/disable SO_TIMEOUT with the specified timeout, in milliseconds. |
void |
setTrafficClass(int value)
Set value of the traffic class for this socket, |
void |
setTransportAuthenticate(int value)
Set value of the IPV6_AH_TRANS_LEVEL option for this socket, that is the ESP policy in transport mode to apply on the socket. |
void |
setTransportEncryption(int value)
Set value of the IPV6_ESP_TRANS_LEVEL option for this socket, that is the ESP policy in transport mode to apply on the socket. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public RawSocket()
throws java.net.SocketException
java.net.SocketException - if the socket could not be opened.
public RawSocket(InetAddress laddr)
throws java.net.SocketException
laddr - local address to bind
public RawSocket(int protocol)
throws java.net.SocketException
protocol - protocol IDjava.net.SocketException - if the socket could not be opened,
or the socket could not bind to the specified local port.
public RawSocket(int protocol,
InetAddress laddr)
throws java.net.SocketException
protocol - protocol IDladdr - local address to bind| Method Detail |
public void send(RawPacket p)
throws java.io.IOException
RawPacket includes information indicating the
data to be sent, its length, the IP address of the remote host.p - the RawPacket to be sent.java.io.IOException - if an I/O error occurs.RawPacket
public void receive(RawPacket p)
throws java.io.IOException
RawPacket's buffer is filled with
the data received. The raw packet also contains the sender's
IP address.
This method blocks until a raw is received. The
length field of the raw packet object contains
the length of the received message. If the message is longer than
the buffer length, the message is truncated.
p - the RawPacket into which to place
the incoming data.java.io.IOException - if an I/O error occurs.RawPacket,
RawSocket
public void setSoTimeout(int timeout)
throws java.net.SocketException
public int getSoTimeout()
throws java.net.SocketException
public void setChecksum(int offset)
throws java.net.SocketException
ofset - the offset where to place the checksum
public int getChecksum()
throws java.net.SocketException
public InetAddress getLocalAddress()
public void setSendBufferSize(int size)
throws java.net.SocketException
Increasing buffer size can increase the performance of network I/O for high-volume connection, while decreasing it can help reduce the backlog of incoming data. For UDP, this sets the maximum size of a packet that may be sent on this socket.
Because SO_SNDBUF is a hint, applications that want to
verify what size the buffers were set to should call
size - the size to which to set the send buffer
size. This value must be greater than 0.java.lang.IllegalArgumentException - if the value is 0 or is
negative.
public int getSendBufferSize()
throws java.net.SocketException
setSendBufferSize(int)
public void setReceiveBufferSize(int size)
throws java.net.SocketException
Increasing buffer size can increase the performance of network I/O for high-volume connection, while decreasing it can help reduce the backlog of incoming data. For UDP, this sets the maximum size of a packet that may be sent on this socket.
Because SO_RCVBUF is a hint, applications that want to
verify what size the buffers were set to should call
size - the size to which to set the receive buffer
size. This value must be greater than 0.java.lang.IllegalArgumentException - if the value is 0 or is
negative.
public int getReceiveBufferSize()
throws java.net.SocketException
setReceiveBufferSize(int)public void close()
public void setNetEncryption(int value)
throws java.net.SocketException
value - value of the policy to apply on the socketgetNetEncryption()
public void setTransportEncryption(int value)
throws java.net.SocketException
value - value of the policy to apply on the socketgetTransportEncryption()
public void setNetAuthenticate(int value)
throws java.net.SocketException
value - value of the policy to apply on the socket#getNetworkAuthenticate
public void setTransportAuthenticate(int value)
throws java.net.SocketException
value - value of the policy to apply on the socketgetTransportAuthenticate()
public int getNetEncryption()
throws java.net.SocketException
setNetEncryption(int)
public int getTransportEncryption()
throws java.net.SocketException
setTransportEncryption(int)
public int getNetAuthenticate()
throws java.net.SocketException
setNetAuthenticate(int)
public int getTransportAuthenticate()
throws java.net.SocketException
setTransportAuthenticate(int)
public void setFlowLabel(int value)
throws java.net.SocketException
value - value of the flow labelgetFlowLabel()
public void setTrafficClass(int value)
throws java.net.SocketException
value - value of the traffic classgetTrafficClass()
public int getFlowLabel()
throws java.net.SocketException
setFlowLabel(int)
public int getTrafficClass()
throws java.net.SocketException
setTrafficClass(int)
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||