├── .gitignore ├── README.md ├── doc-examples ├── dns │ ├── Makefile │ └── uv_getaddrinfo.c ├── filesystem │ ├── Makefile │ ├── testfile │ ├── uv_fs_chown.c │ ├── uv_fs_close.c │ ├── uv_fs_mkdir.c │ ├── uv_fs_open.c │ ├── uv_fs_read.c │ ├── uv_fs_readdir.c │ ├── uv_fs_rename.c │ ├── uv_fs_rmdir.c │ ├── uv_fs_stat.c │ ├── uv_fs_unlink.c │ └── uv_fs_write.c └── tcp │ ├── Makefile │ ├── uv_tcp_bind.c │ ├── uv_tcp_init.c │ └── uv_tcp_listen.c ├── fs_read ├── Makefile └── main.c ├── helloworld ├── Makefile └── main.c ├── idle-basic ├── Makefile └── main.c ├── internal ├── Makefile ├── queue.c └── queue.h ├── shell ├── Makefile ├── test2 ├── uv_shell.c └── uv_shell.h ├── streams ├── Makefile └── main.c ├── tcp-echo-server ├── Makefile └── tcp_echo_server.c ├── uvcat ├── Makefile └── uvcat.c └── uvtee ├── Makefile └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/README.md -------------------------------------------------------------------------------- /doc-examples/dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/dns/Makefile -------------------------------------------------------------------------------- /doc-examples/dns/uv_getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/dns/uv_getaddrinfo.c -------------------------------------------------------------------------------- /doc-examples/filesystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/Makefile -------------------------------------------------------------------------------- /doc-examples/filesystem/testfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_chown.c -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_close.c -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_mkdir.c -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_open.c -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_read.c -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_readdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_readdir.c -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_rename.c -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_rmdir.c -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_stat.c -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_unlink.c -------------------------------------------------------------------------------- /doc-examples/filesystem/uv_fs_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/filesystem/uv_fs_write.c -------------------------------------------------------------------------------- /doc-examples/tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/tcp/Makefile -------------------------------------------------------------------------------- /doc-examples/tcp/uv_tcp_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/tcp/uv_tcp_bind.c -------------------------------------------------------------------------------- /doc-examples/tcp/uv_tcp_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/tcp/uv_tcp_init.c -------------------------------------------------------------------------------- /doc-examples/tcp/uv_tcp_listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/doc-examples/tcp/uv_tcp_listen.c -------------------------------------------------------------------------------- /fs_read/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/fs_read/Makefile -------------------------------------------------------------------------------- /fs_read/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/fs_read/main.c -------------------------------------------------------------------------------- /helloworld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/helloworld/Makefile -------------------------------------------------------------------------------- /helloworld/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/helloworld/main.c -------------------------------------------------------------------------------- /idle-basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/idle-basic/Makefile -------------------------------------------------------------------------------- /idle-basic/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/idle-basic/main.c -------------------------------------------------------------------------------- /internal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/internal/Makefile -------------------------------------------------------------------------------- /internal/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/internal/queue.c -------------------------------------------------------------------------------- /internal/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/internal/queue.h -------------------------------------------------------------------------------- /shell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/shell/Makefile -------------------------------------------------------------------------------- /shell/test2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shell/uv_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/shell/uv_shell.c -------------------------------------------------------------------------------- /shell/uv_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/shell/uv_shell.h -------------------------------------------------------------------------------- /streams/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/streams/Makefile -------------------------------------------------------------------------------- /streams/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/streams/main.c -------------------------------------------------------------------------------- /tcp-echo-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/tcp-echo-server/Makefile -------------------------------------------------------------------------------- /tcp-echo-server/tcp_echo_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/tcp-echo-server/tcp_echo_server.c -------------------------------------------------------------------------------- /uvcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/uvcat/Makefile -------------------------------------------------------------------------------- /uvcat/uvcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/uvcat/uvcat.c -------------------------------------------------------------------------------- /uvtee/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/uvtee/Makefile -------------------------------------------------------------------------------- /uvtee/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodokaiser/libuv-snippets/HEAD/uvtee/main.c --------------------------------------------------------------------------------