/dev/random runs out of bytes and the stun client hangs. To fix this use /dev/urandom instead.
In stun.cxx apply the following patch 677c677 < int fd=open("/dev/urandom",O_RDONLY); --- > int fd=open("/dev/random",O_RDONLY);
patch applied
Log in to post a comment.
patch applied