├── .gitignore ├── COPYING ├── INSTALL ├── Makefile.am ├── Makefile.in ├── README-test-server ├── aclocal.m4 ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── install-sh ├── lib ├── Makefile.am ├── Makefile.in ├── base64-decode.c ├── client-handshake.c ├── extension-deflate-stream.c ├── extension-deflate-stream.h ├── extension-x-google-mux.c ├── extension-x-google-mux.h ├── extension.c ├── handshake.c ├── libwebsockets.c ├── libwebsockets.h ├── md5.c ├── parsers.c ├── private-libwebsockets.h └── sha-1.c ├── libwebsockets-api-doc.html ├── libwebsockets.spec ├── ltmain.sh ├── missing ├── scripts └── kernel-doc ├── test-server ├── Makefile.am ├── Makefile.in ├── favicon.ico ├── test-client.c ├── test-fraggle.c ├── test-ping.c ├── test-server-extpoll.c ├── test-server.c └── test.html └── win32port ├── client ├── client.vcxproj └── client.vcxproj.filters ├── libwebsocketswin32 ├── libwebsocketswin32.vcxproj └── libwebsocketswin32.vcxproj.filters ├── server ├── server.vcxproj └── server.vcxproj.filters ├── win32helpers ├── getopt.c ├── getopt.h ├── getopt_long.c ├── gettimeofday.c ├── gettimeofday.h ├── netdb.h ├── strings.h ├── sys │ └── time.h ├── unistd.h └── websock-w32.h ├── win32port.sln └── zlib ├── ZLib.vcxproj ├── ZLib.vcxproj.filters ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzio.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS=lib test-server 3 | -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/Makefile.in -------------------------------------------------------------------------------- /README-test-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/README-test-server -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/depcomp -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/install-sh -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/Makefile.in -------------------------------------------------------------------------------- /lib/base64-decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/base64-decode.c -------------------------------------------------------------------------------- /lib/client-handshake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/client-handshake.c -------------------------------------------------------------------------------- /lib/extension-deflate-stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/extension-deflate-stream.c -------------------------------------------------------------------------------- /lib/extension-deflate-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/extension-deflate-stream.h -------------------------------------------------------------------------------- /lib/extension-x-google-mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/extension-x-google-mux.c -------------------------------------------------------------------------------- /lib/extension-x-google-mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/extension-x-google-mux.h -------------------------------------------------------------------------------- /lib/extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/extension.c -------------------------------------------------------------------------------- /lib/handshake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/handshake.c -------------------------------------------------------------------------------- /lib/libwebsockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/libwebsockets.c -------------------------------------------------------------------------------- /lib/libwebsockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/libwebsockets.h -------------------------------------------------------------------------------- /lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/md5.c -------------------------------------------------------------------------------- /lib/parsers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/parsers.c -------------------------------------------------------------------------------- /lib/private-libwebsockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/private-libwebsockets.h -------------------------------------------------------------------------------- /lib/sha-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/lib/sha-1.c -------------------------------------------------------------------------------- /libwebsockets-api-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/libwebsockets-api-doc.html -------------------------------------------------------------------------------- /libwebsockets.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/libwebsockets.spec -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/ltmain.sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/missing -------------------------------------------------------------------------------- /scripts/kernel-doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/scripts/kernel-doc -------------------------------------------------------------------------------- /test-server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/test-server/Makefile.am -------------------------------------------------------------------------------- /test-server/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/test-server/Makefile.in -------------------------------------------------------------------------------- /test-server/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/test-server/favicon.ico -------------------------------------------------------------------------------- /test-server/test-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/test-server/test-client.c -------------------------------------------------------------------------------- /test-server/test-fraggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/test-server/test-fraggle.c -------------------------------------------------------------------------------- /test-server/test-ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/test-server/test-ping.c -------------------------------------------------------------------------------- /test-server/test-server-extpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/test-server/test-server-extpoll.c -------------------------------------------------------------------------------- /test-server/test-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/test-server/test-server.c -------------------------------------------------------------------------------- /test-server/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/test-server/test.html -------------------------------------------------------------------------------- /win32port/client/client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/client/client.vcxproj -------------------------------------------------------------------------------- /win32port/client/client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/client/client.vcxproj.filters -------------------------------------------------------------------------------- /win32port/libwebsocketswin32/libwebsocketswin32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/libwebsocketswin32/libwebsocketswin32.vcxproj -------------------------------------------------------------------------------- /win32port/libwebsocketswin32/libwebsocketswin32.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/libwebsocketswin32/libwebsocketswin32.vcxproj.filters -------------------------------------------------------------------------------- /win32port/server/server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/server/server.vcxproj -------------------------------------------------------------------------------- /win32port/server/server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/server/server.vcxproj.filters -------------------------------------------------------------------------------- /win32port/win32helpers/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/win32helpers/getopt.c -------------------------------------------------------------------------------- /win32port/win32helpers/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/win32helpers/getopt.h -------------------------------------------------------------------------------- /win32port/win32helpers/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/win32helpers/getopt_long.c -------------------------------------------------------------------------------- /win32port/win32helpers/gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/win32helpers/gettimeofday.c -------------------------------------------------------------------------------- /win32port/win32helpers/gettimeofday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/win32helpers/gettimeofday.h -------------------------------------------------------------------------------- /win32port/win32helpers/netdb.h: -------------------------------------------------------------------------------- 1 | // Left blank for win32 -------------------------------------------------------------------------------- /win32port/win32helpers/strings.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /win32port/win32helpers/sys/time.h: -------------------------------------------------------------------------------- 1 | // left blank -------------------------------------------------------------------------------- /win32port/win32helpers/unistd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /win32port/win32helpers/websock-w32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/win32helpers/websock-w32.h -------------------------------------------------------------------------------- /win32port/win32port.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/win32port.sln -------------------------------------------------------------------------------- /win32port/zlib/ZLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/ZLib.vcxproj -------------------------------------------------------------------------------- /win32port/zlib/ZLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/ZLib.vcxproj.filters -------------------------------------------------------------------------------- /win32port/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/adler32.c -------------------------------------------------------------------------------- /win32port/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/compress.c -------------------------------------------------------------------------------- /win32port/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/crc32.c -------------------------------------------------------------------------------- /win32port/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/crc32.h -------------------------------------------------------------------------------- /win32port/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/deflate.c -------------------------------------------------------------------------------- /win32port/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/deflate.h -------------------------------------------------------------------------------- /win32port/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/gzio.c -------------------------------------------------------------------------------- /win32port/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/infback.c -------------------------------------------------------------------------------- /win32port/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/inffast.c -------------------------------------------------------------------------------- /win32port/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/inffast.h -------------------------------------------------------------------------------- /win32port/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/inffixed.h -------------------------------------------------------------------------------- /win32port/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/inflate.c -------------------------------------------------------------------------------- /win32port/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/inflate.h -------------------------------------------------------------------------------- /win32port/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/inftrees.c -------------------------------------------------------------------------------- /win32port/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/inftrees.h -------------------------------------------------------------------------------- /win32port/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/trees.c -------------------------------------------------------------------------------- /win32port/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/trees.h -------------------------------------------------------------------------------- /win32port/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/uncompr.c -------------------------------------------------------------------------------- /win32port/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/zconf.h -------------------------------------------------------------------------------- /win32port/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/zlib.h -------------------------------------------------------------------------------- /win32port/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/zutil.c -------------------------------------------------------------------------------- /win32port/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arteme/libwebsockets/HEAD/win32port/zlib/zutil.h --------------------------------------------------------------------------------