SetMaxSend Sets the maximum number of bytes that can be sent at once. Note that SetSockOpt may report success while setting less than size requested - call GetMaxSend to confirm. Params length - number of bytes Return UTE_SUCCESS - success otherwise failure ****************************************************/
| 1747 | otherwise failure |
| 1748 | ****************************************************/ |
| 1749 | int CUT_WSClient::SetMaxSend(int length){ |
| 1750 | return setsockopt(m_socket,SOL_SOCKET,SO_SNDBUF,(char *)&length,sizeof(int)); |
| 1751 | } |
| 1752 | |
| 1753 | /*************************************************** |
| 1754 | SetMaxReceive |
nothing calls this directly
no outgoing calls
no test coverage detected