< prev index next >

src/java.base/share/classes/java/nio/channels/SocketChannel.java

Print this page

        

*** 68,105 **** * <blockquote> * <table class="striped"> * <caption style="display:none">Socket options</caption> * <thead> * <tr> ! * <th>Option Name</th> ! * <th>Description</th> * </tr> * </thead> * <tbody> * <tr> ! * <td> {@link java.net.StandardSocketOptions#SO_SNDBUF SO_SNDBUF} </td> * <td> The size of the socket send buffer </td> * </tr> * <tr> ! * <td> {@link java.net.StandardSocketOptions#SO_RCVBUF SO_RCVBUF} </td> * <td> The size of the socket receive buffer </td> * </tr> * <tr> ! * <td> {@link java.net.StandardSocketOptions#SO_KEEPALIVE SO_KEEPALIVE} </td> * <td> Keep connection alive </td> * </tr> * <tr> ! * <td> {@link java.net.StandardSocketOptions#SO_REUSEADDR SO_REUSEADDR} </td> * <td> Re-use address </td> * </tr> * <tr> ! * <td> {@link java.net.StandardSocketOptions#SO_LINGER SO_LINGER} </td> * <td> Linger on close if data is present (when configured in blocking mode * only) </td> * </tr> * <tr> ! * <td> {@link java.net.StandardSocketOptions#TCP_NODELAY TCP_NODELAY} </td> * <td> Disable the Nagle algorithm </td> * </tr> * </tbody> * </table> * </blockquote> --- 68,105 ---- * <blockquote> * <table class="striped"> * <caption style="display:none">Socket options</caption> * <thead> * <tr> ! * <th scope="col">Option Name</th> ! * <th scope="col">Description</th> * </tr> * </thead> * <tbody> * <tr> ! * <th scope="row"> {@link java.net.StandardSocketOptions#SO_SNDBUF SO_SNDBUF} </th> * <td> The size of the socket send buffer </td> * </tr> * <tr> ! * <th scope="row"> {@link java.net.StandardSocketOptions#SO_RCVBUF SO_RCVBUF} </th> * <td> The size of the socket receive buffer </td> * </tr> * <tr> ! * <th scope="row"> {@link java.net.StandardSocketOptions#SO_KEEPALIVE SO_KEEPALIVE} </th> * <td> Keep connection alive </td> * </tr> * <tr> ! * <th scope="row"> {@link java.net.StandardSocketOptions#SO_REUSEADDR SO_REUSEADDR} </th> * <td> Re-use address </td> * </tr> * <tr> ! * <th scope="row"> {@link java.net.StandardSocketOptions#SO_LINGER SO_LINGER} </th> * <td> Linger on close if data is present (when configured in blocking mode * only) </td> * </tr> * <tr> ! * <th scope="row"> {@link java.net.StandardSocketOptions#TCP_NODELAY TCP_NODELAY} </th> * <td> Disable the Nagle algorithm </td> * </tr> * </tbody> * </table> * </blockquote>
< prev index next >