Fix line which was too long
This commit is contained in:
parent
5427ab41c8
commit
09939b454e
1 changed files with 3 additions and 1 deletions
|
@ -95,7 +95,9 @@ static int _tcp_getsockopt(int socket, int level, int option_name,
|
||||||
}
|
}
|
||||||
if (level == SOL_SOCKET && option_name == SO_RCVBUF)
|
if (level == SOL_SOCKET && option_name == SO_RCVBUF)
|
||||||
{
|
{
|
||||||
i = 32 * 1024; /* Receive buffer in the current implementation */
|
i = 32 * 1024; /* Receive buffer in the current
|
||||||
|
* implementation
|
||||||
|
*/
|
||||||
getsockopt_copy(&i, sizeof(i), option_value, option_len);
|
getsockopt_copy(&i, sizeof(i), option_value, option_len);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue