├── CREDITS ├── EXPERIMENTAL ├── LICENSE ├── README.md ├── config.m4 ├── config.w32 ├── handlersocketi class ├── handlersocketi.c ├── handlersocketi_class.c ├── handlersocketi_class.h ├── handlersocketi_exception.c ├── handlersocketi_exception.h ├── handlersocketi_index.c ├── handlersocketi_index.h ├── php_handlersocketi.h ├── php_verdep.h └── util ├── common.h ├── request.c ├── request.h ├── response.c └── response.h /CREDITS: -------------------------------------------------------------------------------- 1 | handlersocketi 2 | -------------------------------------------------------------------------------- /EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/config.w32 -------------------------------------------------------------------------------- /handlersocketi class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/handlersocketi class -------------------------------------------------------------------------------- /handlersocketi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/handlersocketi.c -------------------------------------------------------------------------------- /handlersocketi_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/handlersocketi_class.c -------------------------------------------------------------------------------- /handlersocketi_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/handlersocketi_class.h -------------------------------------------------------------------------------- /handlersocketi_exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/handlersocketi_exception.c -------------------------------------------------------------------------------- /handlersocketi_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/handlersocketi_exception.h -------------------------------------------------------------------------------- /handlersocketi_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/handlersocketi_index.c -------------------------------------------------------------------------------- /handlersocketi_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/handlersocketi_index.h -------------------------------------------------------------------------------- /php_handlersocketi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/php_handlersocketi.h -------------------------------------------------------------------------------- /php_verdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/php_verdep.h -------------------------------------------------------------------------------- /util/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/util/common.h -------------------------------------------------------------------------------- /util/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/util/request.c -------------------------------------------------------------------------------- /util/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/util/request.h -------------------------------------------------------------------------------- /util/response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/util/response.c -------------------------------------------------------------------------------- /util/response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjdev/php-ext-handlersocketi/HEAD/util/response.h --------------------------------------------------------------------------------