#
a25595f4 |
| 11-Nov-2014 |
Daniel Lowrey |
Add $offset param to uv_fs_read() to allow seeking on open handles This change modifies the uv_fs_read() function signature slightly by adding a new $offset parameter. This allows the sa
Add $offset param to uv_fs_read() to allow seeking on open handles This change modifies the uv_fs_read() function signature slightly by adding a new $offset parameter. This allows the same file handle to be reused for multiple reads. Previously the only way to access a section of a file that had already been read was to open a new handle. Old: uv_fs_read(resoruce $loop, zval $fd, long $length, callable $callback) New: uv_fs_read(resoruce $loop, zval $fd, long $offest, long $length, callable $callback) This change represents a minor BC break for existing code using uv_fs_read().
show more ...
|
#
90c9db69 |
| 11-Feb-2013 |
Shuhei Tanuma |
update latest libuv and http-parser Notes: ares functions are removed as uv removed that features. please use before commit if you want to use ares features. currently, php ares extensio
update latest libuv and http-parser Notes: ares functions are removed as uv removed that features. please use before commit if you want to use ares features. currently, php ares extension seems not maintained. please ask me when you met some troubles about ares feature.
show more ...
|