├── Doxyfile ├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── examples ├── Makefile.am ├── dual_echo_server.c └── echo_server.c ├── src ├── Makefile.am ├── evws-internal.h ├── evws.c ├── evws_util.c ├── evws_util.h ├── http_parser.c ├── http_parser.h ├── include │ ├── Makefile.am │ └── evws │ │ ├── evws.h │ │ └── wslistener.h ├── libevws.pc.in └── wslistener.c └── test ├── Makefile.am └── evws_util_test.c /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/configure.ac -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/dual_echo_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/examples/dual_echo_server.c -------------------------------------------------------------------------------- /examples/echo_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/examples/echo_server.c -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/evws-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/evws-internal.h -------------------------------------------------------------------------------- /src/evws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/evws.c -------------------------------------------------------------------------------- /src/evws_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/evws_util.c -------------------------------------------------------------------------------- /src/evws_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/evws_util.h -------------------------------------------------------------------------------- /src/http_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/http_parser.c -------------------------------------------------------------------------------- /src/http_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/http_parser.h -------------------------------------------------------------------------------- /src/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/include/Makefile.am -------------------------------------------------------------------------------- /src/include/evws/evws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/include/evws/evws.h -------------------------------------------------------------------------------- /src/include/evws/wslistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/include/evws/wslistener.h -------------------------------------------------------------------------------- /src/libevws.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/libevws.pc.in -------------------------------------------------------------------------------- /src/wslistener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/src/wslistener.c -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/evws_util_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crunchyfrog/libevws/HEAD/test/evws_util_test.c --------------------------------------------------------------------------------