I tried to increase the value SO_RCVBUF by getsockopt(udp_fd, SOL_SOCKET, SO_RCVBUF, &rcvBufferSize, &sockOptSize) but I am not able to increase it more than rmem_
So please tell me how can I increase it by C Code
If the process has root rights, then let it printf
the desired number to
/proc/sys/net/core/rmem_max
In Linux kernels 2.6.14 and above we have SO_RCVBUFFORCE which can be used to override the rmem_max limit. However this needs CAP_NET_ADMIN to be set.
Check https://linux.die.net/man/7/socket.