[PATCH] TCP_NODELAY constant for socket_{get,set}_option
| Bug #46360 | [PATCH] TCP_NODELAY constant for socket_{get,set}_option | ||||
|---|---|---|---|---|---|
| Submitted: | 2008-10-22 04:44 UTC | Modified: | 2009-08-10 04:42 UTC | ||
| From: | bugs at trick dot vanstaveren dot us | Assigned: | |||
| Status: | Closed | Package: | Sockets related | ||
| PHP Version: | 5.2.6 | OS: | * | ||
| Private report: | No | CVE-ID: | None | ||
[2008-10-22 04:44 UTC] bugs at trick dot vanstaveren dot us
Description: ------------ C-level TCP function setsockopt allows users of TCP sockets to set the TCP_NODELAY flag. This flag disable's the typically default use of Nagle's Algorithm[1] on a TCP socket. 1: http://en.wikipedia.org/wiki/Nagle%27s_algorithm Nagle's Algorithm is bad for protocols like the extremely brief one spoken by PHP/Java Bridge. This patch is inspired by my use of PJB on FreeBSD which does not automatically set TCP_NODELAY on localhost connections. PHP does not expose this constant, although it is valid for the sockets library as socket_set_option is a straightforward wrapper around setsockopt. Here is a trivial patch against PHP 5.2.5 to add the PHP constant TCP_NODELAY. I have tested this on FreeBSD 7.0 + PHP 5.2.5. Patch is quite simple so should apply fine against 5.3 / 6 with just a line offset. Constant is the same on Linux so will work fine there; am not sure about win32. Happy to test other versions and platforms if necessary. --- ext/sockets/sockets.c.orig 2008-10-21 22:53:07.000000000 +0000 +++ ext/sockets/sockets.c 2008-10-21 22:53:00.000000000 +0000 @@ -509,6 +509,7 @@ REGISTER_LONG_CONSTANT("SO_ERROR", SO_ERROR, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("SOL_SOCKET", SOL_SOCKET, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("SOMAXCONN", SOMAXCONN, CONST_CS | CONST_PERSISTENT); + REGISTER_LONG_CONSTANT("TCP_NODELAY", TCP_NODELAY, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("PHP_NORMAL_READ", PHP_NORMAL_READ, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("PHP_BINARY_READ", PHP_BINARY_READ, CONST_CS | CONST_PERSISTENT); Cheers, Patrick van Staveren
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2008-10-22 19:00 UTC] lbarnaud@php.net
[2008-10-28 21:06 UTC] bugs at trick dot vanstaveren dot us
[2009-08-10 04:42 UTC] bugs at trick dot vanstaveren dot us