Increased Socket buffer size

This commit is contained in:
Shoghi Cervantes Pueyo 2013-04-16 19:11:03 +02:00
parent 710ed5c704
commit f1cb29cc8b

View File

@ -39,6 +39,9 @@ class UDPSocket{
$this->unblock();
}else{
if(socket_bind($this->sock, $serverip, $port) === true){
socket_set_option($this->sock, SOL_SOCKET, SO_REUSEADDR, 0);
socket_set_option($this->sock, SOL_SOCKET, SO_SNDBUF, 65535);
socket_set_option($this->sock, SOL_SOCKET, SO_RCVBUF, 65535);
$this->unblock();
$this->connected = true;
}else{