| 403 | } |
| 404 | |
| 405 | bool socket_stream::get_tcp_nodelay() const { |
| 406 | ACL_SOCKET sock = sock_handle(); |
| 407 | if (sock == ACL_SOCKET_INVALID) { |
| 408 | logger_error("invalid socket handle"); |
| 409 | return false; |
| 410 | } |
| 411 | |
| 412 | return acl_get_tcp_nodelay(sock) != 0; |
| 413 | } |
| 414 | |
| 415 | int socket_stream::get_tcp_solinger() const { |
| 416 | ACL_SOCKET sock = sock_handle(); |
nothing calls this directly
no test coverage detected