asyncengine 0.0.1.testing
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +0 -0
- data/asyncengine.gemspec +26 -0
- data/ext/asyncengine_ext/asyncengine_ruby.c +82 -0
- data/ext/asyncengine_ext/extconf.rb +47 -0
- data/ext/asyncengine_ext/libuv/AUTHORS +45 -0
- data/ext/asyncengine_ext/libuv/LICENSE +42 -0
- data/ext/asyncengine_ext/libuv/Makefile +119 -0
- data/ext/asyncengine_ext/libuv/README.md +88 -0
- data/ext/asyncengine_ext/libuv/build/gcc_version.py +20 -0
- data/ext/asyncengine_ext/libuv/common.gypi +176 -0
- data/ext/asyncengine_ext/libuv/config-mingw.mk +61 -0
- data/ext/asyncengine_ext/libuv/config-unix.mk +173 -0
- data/ext/asyncengine_ext/libuv/gyp_uv +60 -0
- data/ext/asyncengine_ext/libuv/include/ares.h +591 -0
- data/ext/asyncengine_ext/libuv/include/ares_version.h +24 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/eio.h +403 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/ev.h +838 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/ngx-queue.h +106 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/tree.h +768 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/uv-unix.h +256 -0
- data/ext/asyncengine_ext/libuv/include/uv-private/uv-win.h +458 -0
- data/ext/asyncengine_ext/libuv/include/uv.h +1556 -0
- data/ext/asyncengine_ext/libuv/src/ares/AUTHORS +37 -0
- data/ext/asyncengine_ext/libuv/src/ares/CHANGES +1218 -0
- data/ext/asyncengine_ext/libuv/src/ares/CMakeLists.txt +22 -0
- data/ext/asyncengine_ext/libuv/src/ares/NEWS +21 -0
- data/ext/asyncengine_ext/libuv/src/ares/README +60 -0
- data/ext/asyncengine_ext/libuv/src/ares/README.cares +13 -0
- data/ext/asyncengine_ext/libuv/src/ares/README.msvc +142 -0
- data/ext/asyncengine_ext/libuv/src/ares/README.node +21 -0
- data/ext/asyncengine_ext/libuv/src/ares/RELEASE-NOTES +26 -0
- data/ext/asyncengine_ext/libuv/src/ares/TODO +23 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares__close_sockets.c +66 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares__get_hostent.c +263 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares__read_line.c +71 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares__timeval.c +111 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_cancel.c +63 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_data.c +190 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_data.h +65 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_destroy.c +105 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_dns.h +90 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_expand_name.c +200 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_expand_string.c +75 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_fds.c +63 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_free_hostent.c +42 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_free_string.c +25 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getenv.c +30 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getenv.h +26 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_gethostbyaddr.c +301 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_gethostbyname.c +523 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getnameinfo.c +427 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getopt.c +122 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getopt.h +53 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_getsock.c +72 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_init.c +1809 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_iphlpapi.h +221 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_ipv6.h +78 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_library_init.c +142 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_library_init.h +42 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_llist.c +86 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_llist.h +42 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_mkquery.c +195 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_nowarn.c +181 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_nowarn.h +55 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_options.c +248 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_a_reply.c +263 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_aaaa_reply.c +259 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_mx_reply.c +170 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_ns_reply.c +182 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_ptr_reply.c +217 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_srv_reply.c +179 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_parse_txt_reply.c +201 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_platform.c +11035 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_platform.h +43 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_private.h +355 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_process.c +1295 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_query.c +183 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_rules.h +144 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_search.c +321 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_send.c +134 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_setup.h +199 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_strcasecmp.c +66 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_strcasecmp.h +30 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_strdup.c +42 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_strdup.h +26 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_strerror.c +56 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_timeout.c +80 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_version.c +11 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_writev.c +79 -0
- data/ext/asyncengine_ext/libuv/src/ares/ares_writev.h +36 -0
- data/ext/asyncengine_ext/libuv/src/ares/bitncmp.c +59 -0
- data/ext/asyncengine_ext/libuv/src/ares/bitncmp.h +26 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_cygwin/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_darwin/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_freebsd/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_linux/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_netbsd/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_openbsd/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_sunos/ares_config.h +512 -0
- data/ext/asyncengine_ext/libuv/src/ares/config_win32/ares_config.h +369 -0
- data/ext/asyncengine_ext/libuv/src/ares/get_ver.awk +35 -0
- data/ext/asyncengine_ext/libuv/src/ares/inet_net_pton.c +451 -0
- data/ext/asyncengine_ext/libuv/src/ares/inet_net_pton.h +31 -0
- data/ext/asyncengine_ext/libuv/src/ares/inet_ntop.c +208 -0
- data/ext/asyncengine_ext/libuv/src/ares/inet_ntop.h +26 -0
- data/ext/asyncengine_ext/libuv/src/ares/nameser.h +203 -0
- data/ext/asyncengine_ext/libuv/src/ares/setup_once.h +504 -0
- data/ext/asyncengine_ext/libuv/src/ares/windows_port.c +22 -0
- data/ext/asyncengine_ext/libuv/src/unix/async.c +58 -0
- data/ext/asyncengine_ext/libuv/src/unix/cares.c +194 -0
- data/ext/asyncengine_ext/libuv/src/unix/check.c +80 -0
- data/ext/asyncengine_ext/libuv/src/unix/core.c +588 -0
- data/ext/asyncengine_ext/libuv/src/unix/cygwin.c +84 -0
- data/ext/asyncengine_ext/libuv/src/unix/darwin.c +341 -0
- data/ext/asyncengine_ext/libuv/src/unix/dl.c +91 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/Changes +63 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/LICENSE +36 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/Makefile.am +15 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/aclocal.m4 +8957 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/autogen.sh +3 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config.h.in +86 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_cygwin.h +80 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_darwin.h +141 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_freebsd.h +81 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_linux.h +94 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_netbsd.h +81 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_openbsd.h +137 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/config_sunos.h +84 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/configure.ac +22 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/demo.c +194 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/ecb.h +370 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/eio.3 +3428 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/eio.c +2593 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/eio.pod +969 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/libeio.m4 +195 -0
- data/ext/asyncengine_ext/libuv/src/unix/eio/xthread.h +164 -0
- data/ext/asyncengine_ext/libuv/src/unix/error.c +98 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/Changes +388 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/LICENSE +36 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/Makefile.am +18 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/Makefile.in +771 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/README +58 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/aclocal.m4 +8957 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/autogen.sh +6 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config.guess +1526 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config.h.in +125 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config.sub +1658 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_cygwin.h +123 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_darwin.h +122 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_freebsd.h +120 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_linux.h +141 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_netbsd.h +120 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_openbsd.h +126 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/config_sunos.h +122 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/configure +13037 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/configure.ac +18 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/depcomp +630 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev++.h +816 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev.3 +5311 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev.c +3921 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev.pod +5243 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_epoll.c +266 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_kqueue.c +235 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_poll.c +148 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_port.c +179 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_select.c +310 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_vars.h +203 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_win32.c +153 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ev_wrap.h +196 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/event.c +402 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/event.h +170 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/install-sh +294 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/libev.m4 +39 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/ltmain.sh +8413 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/missing +336 -0
- data/ext/asyncengine_ext/libuv/src/unix/ev/mkinstalldirs +111 -0
- data/ext/asyncengine_ext/libuv/src/unix/freebsd.c +312 -0
- data/ext/asyncengine_ext/libuv/src/unix/fs.c +707 -0
- data/ext/asyncengine_ext/libuv/src/unix/idle.c +79 -0
- data/ext/asyncengine_ext/libuv/src/unix/internal.h +161 -0
- data/ext/asyncengine_ext/libuv/src/unix/kqueue.c +127 -0
- data/ext/asyncengine_ext/libuv/src/unix/linux/core.c +474 -0
- data/ext/asyncengine_ext/libuv/src/unix/linux/inotify.c +211 -0
- data/ext/asyncengine_ext/libuv/src/unix/linux/syscalls.c +230 -0
- data/ext/asyncengine_ext/libuv/src/unix/linux/syscalls.h +87 -0
- data/ext/asyncengine_ext/libuv/src/unix/loop.c +58 -0
- data/ext/asyncengine_ext/libuv/src/unix/netbsd.c +108 -0
- data/ext/asyncengine_ext/libuv/src/unix/openbsd.c +295 -0
- data/ext/asyncengine_ext/libuv/src/unix/pipe.c +266 -0
- data/ext/asyncengine_ext/libuv/src/unix/prepare.c +79 -0
- data/ext/asyncengine_ext/libuv/src/unix/process.c +369 -0
- data/ext/asyncengine_ext/libuv/src/unix/stream.c +1033 -0
- data/ext/asyncengine_ext/libuv/src/unix/sunos.c +466 -0
- data/ext/asyncengine_ext/libuv/src/unix/tcp.c +327 -0
- data/ext/asyncengine_ext/libuv/src/unix/thread.c +154 -0
- data/ext/asyncengine_ext/libuv/src/unix/timer.c +127 -0
- data/ext/asyncengine_ext/libuv/src/unix/tty.c +146 -0
- data/ext/asyncengine_ext/libuv/src/unix/udp.c +670 -0
- data/ext/asyncengine_ext/libuv/src/unix/uv-eio.c +124 -0
- data/ext/asyncengine_ext/libuv/src/unix/uv-eio.h +13 -0
- data/ext/asyncengine_ext/libuv/src/uv-common.c +354 -0
- data/ext/asyncengine_ext/libuv/src/uv-common.h +87 -0
- data/ext/asyncengine_ext/libuv/src/win/async.c +127 -0
- data/ext/asyncengine_ext/libuv/src/win/cares.c +290 -0
- data/ext/asyncengine_ext/libuv/src/win/core.c +270 -0
- data/ext/asyncengine_ext/libuv/src/win/dl.c +82 -0
- data/ext/asyncengine_ext/libuv/src/win/error.c +132 -0
- data/ext/asyncengine_ext/libuv/src/win/fs-event.c +514 -0
- data/ext/asyncengine_ext/libuv/src/win/fs.c +1576 -0
- data/ext/asyncengine_ext/libuv/src/win/getaddrinfo.c +372 -0
- data/ext/asyncengine_ext/libuv/src/win/handle.c +225 -0
- data/ext/asyncengine_ext/libuv/src/win/internal.h +352 -0
- data/ext/asyncengine_ext/libuv/src/win/loop-watcher.c +131 -0
- data/ext/asyncengine_ext/libuv/src/win/pipe.c +1661 -0
- data/ext/asyncengine_ext/libuv/src/win/process.c +1140 -0
- data/ext/asyncengine_ext/libuv/src/win/req.c +174 -0
- data/ext/asyncengine_ext/libuv/src/win/stream.c +201 -0
- data/ext/asyncengine_ext/libuv/src/win/tcp.c +1282 -0
- data/ext/asyncengine_ext/libuv/src/win/thread.c +332 -0
- data/ext/asyncengine_ext/libuv/src/win/threadpool.c +73 -0
- data/ext/asyncengine_ext/libuv/src/win/timer.c +276 -0
- data/ext/asyncengine_ext/libuv/src/win/tty.c +1795 -0
- data/ext/asyncengine_ext/libuv/src/win/udp.c +709 -0
- data/ext/asyncengine_ext/libuv/src/win/util.c +719 -0
- data/ext/asyncengine_ext/libuv/src/win/winapi.c +117 -0
- data/ext/asyncengine_ext/libuv/src/win/winapi.h +4419 -0
- data/ext/asyncengine_ext/libuv/src/win/winsock.c +470 -0
- data/ext/asyncengine_ext/libuv/src/win/winsock.h +138 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-ares.c +118 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-getaddrinfo.c +94 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-list.h +105 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-ping-pongs.c +213 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-pound.c +324 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-pump.c +462 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-sizes.c +40 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-spawn.c +156 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-tcp-write-batch.c +140 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-thread.c +64 -0
- data/ext/asyncengine_ext/libuv/test/benchmark-udp-packet-storm.c +247 -0
- data/ext/asyncengine_ext/libuv/test/blackhole-server.c +118 -0
- data/ext/asyncengine_ext/libuv/test/dns-server.c +321 -0
- data/ext/asyncengine_ext/libuv/test/echo-server.c +370 -0
- data/ext/asyncengine_ext/libuv/test/fixtures/empty_file +0 -0
- data/ext/asyncengine_ext/libuv/test/fixtures/load_error.node +1 -0
- data/ext/asyncengine_ext/libuv/test/run-benchmarks.c +64 -0
- data/ext/asyncengine_ext/libuv/test/run-tests.c +108 -0
- data/ext/asyncengine_ext/libuv/test/runner-unix.c +315 -0
- data/ext/asyncengine_ext/libuv/test/runner-unix.h +36 -0
- data/ext/asyncengine_ext/libuv/test/runner-win.c +343 -0
- data/ext/asyncengine_ext/libuv/test/runner-win.h +42 -0
- data/ext/asyncengine_ext/libuv/test/runner.c +317 -0
- data/ext/asyncengine_ext/libuv/test/runner.h +159 -0
- data/ext/asyncengine_ext/libuv/test/task.h +117 -0
- data/ext/asyncengine_ext/libuv/test/test-async.c +216 -0
- data/ext/asyncengine_ext/libuv/test/test-callback-stack.c +203 -0
- data/ext/asyncengine_ext/libuv/test/test-connection-fail.c +148 -0
- data/ext/asyncengine_ext/libuv/test/test-counters-init.c +216 -0
- data/ext/asyncengine_ext/libuv/test/test-cwd-and-chdir.c +64 -0
- data/ext/asyncengine_ext/libuv/test/test-delayed-accept.c +197 -0
- data/ext/asyncengine_ext/libuv/test/test-dlerror.c +49 -0
- data/ext/asyncengine_ext/libuv/test/test-eio-overflow.c +90 -0
- data/ext/asyncengine_ext/libuv/test/test-error.c +59 -0
- data/ext/asyncengine_ext/libuv/test/test-fail-always.c +29 -0
- data/ext/asyncengine_ext/libuv/test/test-fs-event.c +442 -0
- data/ext/asyncengine_ext/libuv/test/test-fs.c +1731 -0
- data/ext/asyncengine_ext/libuv/test/test-get-currentexe.c +63 -0
- data/ext/asyncengine_ext/libuv/test/test-get-loadavg.c +36 -0
- data/ext/asyncengine_ext/libuv/test/test-get-memory.c +38 -0
- data/ext/asyncengine_ext/libuv/test/test-getaddrinfo.c +122 -0
- data/ext/asyncengine_ext/libuv/test/test-gethostbyname.c +189 -0
- data/ext/asyncengine_ext/libuv/test/test-getsockname.c +342 -0
- data/ext/asyncengine_ext/libuv/test/test-hrtime.c +51 -0
- data/ext/asyncengine_ext/libuv/test/test-idle.c +81 -0
- data/ext/asyncengine_ext/libuv/test/test-ipc-send-recv.c +209 -0
- data/ext/asyncengine_ext/libuv/test/test-ipc.c +614 -0
- data/ext/asyncengine_ext/libuv/test/test-list.h +371 -0
- data/ext/asyncengine_ext/libuv/test/test-loop-handles.c +359 -0
- data/ext/asyncengine_ext/libuv/test/test-multiple-listen.c +102 -0
- data/ext/asyncengine_ext/libuv/test/test-mutexes.c +63 -0
- data/ext/asyncengine_ext/libuv/test/test-pass-always.c +28 -0
- data/ext/asyncengine_ext/libuv/test/test-ping-pong.c +253 -0
- data/ext/asyncengine_ext/libuv/test/test-pipe-bind-error.c +140 -0
- data/ext/asyncengine_ext/libuv/test/test-pipe-connect-error.c +96 -0
- data/ext/asyncengine_ext/libuv/test/test-platform-output.c +87 -0
- data/ext/asyncengine_ext/libuv/test/test-process-title.c +42 -0
- data/ext/asyncengine_ext/libuv/test/test-ref.c +322 -0
- data/ext/asyncengine_ext/libuv/test/test-run-once.c +44 -0
- data/ext/asyncengine_ext/libuv/test/test-shutdown-close.c +103 -0
- data/ext/asyncengine_ext/libuv/test/test-shutdown-eof.c +183 -0
- data/ext/asyncengine_ext/libuv/test/test-spawn.c +499 -0
- data/ext/asyncengine_ext/libuv/test/test-stdio-over-pipes.c +256 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-bind-error.c +191 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-bind6-error.c +154 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-close.c +129 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-connect-error.c +70 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-connect6-error.c +68 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-flags.c +51 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-write-error.c +168 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-write-to-half-open-connection.c +135 -0
- data/ext/asyncengine_ext/libuv/test/test-tcp-writealot.c +195 -0
- data/ext/asyncengine_ext/libuv/test/test-thread.c +183 -0
- data/ext/asyncengine_ext/libuv/test/test-threadpool.c +57 -0
- data/ext/asyncengine_ext/libuv/test/test-timer-again.c +141 -0
- data/ext/asyncengine_ext/libuv/test/test-timer.c +130 -0
- data/ext/asyncengine_ext/libuv/test/test-tty.c +110 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-dgram-too-big.c +86 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-ipv6.c +156 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-multicast-join.c +139 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-multicast-ttl.c +86 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-options.c +86 -0
- data/ext/asyncengine_ext/libuv/test/test-udp-send-and-recv.c +208 -0
- data/ext/asyncengine_ext/libuv/test/test-util.c +97 -0
- data/ext/asyncengine_ext/libuv/uv.gyp +435 -0
- data/ext/asyncengine_ext/libuv/vcbuild.bat +105 -0
- data/lib/asyncengine/version.rb +3 -0
- data/lib/asyncengine.rb +41 -0
- metadata +384 -0
@@ -0,0 +1,256 @@
|
|
1
|
+
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
2
|
+
*
|
3
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
* of this software and associated documentation files (the "Software"), to
|
5
|
+
* deal in the Software without restriction, including without limitation the
|
6
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
7
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
8
|
+
* furnished to do so, subject to the following conditions:
|
9
|
+
*
|
10
|
+
* The above copyright notice and this permission notice shall be included in
|
11
|
+
* all copies or substantial portions of the Software.
|
12
|
+
*
|
13
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
18
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
19
|
+
* IN THE SOFTWARE.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#include "uv.h"
|
23
|
+
#include "task.h"
|
24
|
+
|
25
|
+
#include <stdlib.h>
|
26
|
+
#include <string.h>
|
27
|
+
|
28
|
+
|
29
|
+
static char exepath[1024];
|
30
|
+
static size_t exepath_size = 1024;
|
31
|
+
static char* args[3];
|
32
|
+
static uv_process_options_t options;
|
33
|
+
static int close_cb_called;
|
34
|
+
static int exit_cb_called;
|
35
|
+
static int on_read_cb_called;
|
36
|
+
static int after_write_cb_called;
|
37
|
+
uv_pipe_t out, in;
|
38
|
+
static uv_loop_t* loop;
|
39
|
+
#define OUTPUT_SIZE 1024
|
40
|
+
static char output[OUTPUT_SIZE];
|
41
|
+
static int output_used;
|
42
|
+
|
43
|
+
|
44
|
+
typedef struct {
|
45
|
+
uv_write_t req;
|
46
|
+
uv_buf_t buf;
|
47
|
+
} write_req_t;
|
48
|
+
|
49
|
+
|
50
|
+
static void close_cb(uv_handle_t* handle) {
|
51
|
+
printf("close_cb\n");
|
52
|
+
close_cb_called++;
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
static void exit_cb(uv_process_t* process, int exit_status, int term_signal) {
|
57
|
+
printf("exit_cb\n");
|
58
|
+
exit_cb_called++;
|
59
|
+
ASSERT(exit_status == 0);
|
60
|
+
ASSERT(term_signal == 0);
|
61
|
+
uv_close((uv_handle_t*)process, close_cb);
|
62
|
+
uv_close((uv_handle_t*)&in, close_cb);
|
63
|
+
uv_close((uv_handle_t*)&out, close_cb);
|
64
|
+
}
|
65
|
+
|
66
|
+
|
67
|
+
static void init_process_options(char* test, uv_exit_cb exit_cb) {
|
68
|
+
int r = uv_exepath(exepath, &exepath_size);
|
69
|
+
ASSERT(r == 0);
|
70
|
+
exepath[exepath_size] = '\0';
|
71
|
+
args[0] = exepath;
|
72
|
+
args[1] = test;
|
73
|
+
args[2] = NULL;
|
74
|
+
options.file = exepath;
|
75
|
+
options.args = args;
|
76
|
+
options.exit_cb = exit_cb;
|
77
|
+
}
|
78
|
+
|
79
|
+
|
80
|
+
static uv_buf_t on_alloc(uv_handle_t* handle, size_t suggested_size) {
|
81
|
+
uv_buf_t buf;
|
82
|
+
buf.base = output + output_used;
|
83
|
+
buf.len = OUTPUT_SIZE - output_used;
|
84
|
+
return buf;
|
85
|
+
}
|
86
|
+
|
87
|
+
|
88
|
+
static void after_write(uv_write_t* req, int status) {
|
89
|
+
write_req_t* wr;
|
90
|
+
|
91
|
+
if (status) {
|
92
|
+
uv_err_t err = uv_last_error(loop);
|
93
|
+
fprintf(stderr, "uv_write error: %s\n", uv_strerror(err));
|
94
|
+
ASSERT(0);
|
95
|
+
}
|
96
|
+
|
97
|
+
wr = (write_req_t*) req;
|
98
|
+
|
99
|
+
/* Free the read/write buffer and the request */
|
100
|
+
free(wr);
|
101
|
+
|
102
|
+
after_write_cb_called++;
|
103
|
+
}
|
104
|
+
|
105
|
+
|
106
|
+
static void on_read(uv_stream_t* tcp, ssize_t nread, uv_buf_t buf) {
|
107
|
+
write_req_t* write_req;
|
108
|
+
int r;
|
109
|
+
uv_err_t err = uv_last_error(uv_default_loop());
|
110
|
+
|
111
|
+
ASSERT(nread > 0 || err.code == UV_EOF);
|
112
|
+
|
113
|
+
if (nread > 0) {
|
114
|
+
output_used += nread;
|
115
|
+
if (output_used == 12) {
|
116
|
+
ASSERT(memcmp("hello world\n", output, 12) == 0);
|
117
|
+
write_req = (write_req_t*)malloc(sizeof(*write_req));
|
118
|
+
write_req->buf = uv_buf_init(output, output_used);
|
119
|
+
r = uv_write(&write_req->req, (uv_stream_t*)&in, &write_req->buf, 1, after_write);
|
120
|
+
ASSERT(r == 0);
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
on_read_cb_called++;
|
125
|
+
}
|
126
|
+
|
127
|
+
|
128
|
+
TEST_IMPL(stdio_over_pipes) {
|
129
|
+
int r;
|
130
|
+
uv_process_t process;
|
131
|
+
loop = uv_default_loop();
|
132
|
+
|
133
|
+
init_process_options("stdio_over_pipes_helper", exit_cb);
|
134
|
+
|
135
|
+
uv_pipe_init(loop, &out, 0);
|
136
|
+
options.stdout_stream = &out;
|
137
|
+
uv_pipe_init(loop, &in, 0);
|
138
|
+
options.stdin_stream = ∈
|
139
|
+
|
140
|
+
r = uv_spawn(loop, &process, options);
|
141
|
+
ASSERT(r == 0);
|
142
|
+
|
143
|
+
r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read);
|
144
|
+
ASSERT(r == 0);
|
145
|
+
|
146
|
+
r = uv_run(uv_default_loop());
|
147
|
+
ASSERT(r == 0);
|
148
|
+
|
149
|
+
ASSERT(on_read_cb_called > 1);
|
150
|
+
ASSERT(after_write_cb_called == 1);
|
151
|
+
ASSERT(exit_cb_called == 1);
|
152
|
+
ASSERT(close_cb_called == 3);
|
153
|
+
ASSERT(memcmp("hello world\n", output, 12) == 0);
|
154
|
+
ASSERT(output_used == 12);
|
155
|
+
|
156
|
+
return 0;
|
157
|
+
}
|
158
|
+
|
159
|
+
|
160
|
+
/* Everything here runs in a child process. */
|
161
|
+
|
162
|
+
static int on_pipe_read_called;
|
163
|
+
static int after_write_called;
|
164
|
+
static uv_pipe_t stdin_pipe;
|
165
|
+
static uv_pipe_t stdout_pipe;
|
166
|
+
|
167
|
+
static void on_pipe_read(uv_stream_t* tcp, ssize_t nread, uv_buf_t buf) {
|
168
|
+
ASSERT(nread > 0);
|
169
|
+
ASSERT(memcmp("hello world\n", buf.base, nread) == 0);
|
170
|
+
on_pipe_read_called++;
|
171
|
+
|
172
|
+
free(buf.base);
|
173
|
+
|
174
|
+
uv_close((uv_handle_t*)&stdin_pipe, close_cb);
|
175
|
+
uv_close((uv_handle_t*)&stdout_pipe, close_cb);
|
176
|
+
}
|
177
|
+
|
178
|
+
|
179
|
+
static void after_pipe_write(uv_write_t* req, int status) {
|
180
|
+
ASSERT(status == 0);
|
181
|
+
after_write_called++;
|
182
|
+
}
|
183
|
+
|
184
|
+
|
185
|
+
static uv_buf_t on_read_alloc(uv_handle_t* handle,
|
186
|
+
size_t suggested_size) {
|
187
|
+
uv_buf_t buf;
|
188
|
+
buf.base = (char*)malloc(suggested_size);
|
189
|
+
buf.len = suggested_size;
|
190
|
+
return buf;
|
191
|
+
}
|
192
|
+
|
193
|
+
|
194
|
+
int stdio_over_pipes_helper() {
|
195
|
+
/* Write several buffers to test that the write order is preserved. */
|
196
|
+
char* buffers[] = {
|
197
|
+
"he",
|
198
|
+
"ll",
|
199
|
+
"o ",
|
200
|
+
"wo",
|
201
|
+
"rl",
|
202
|
+
"d",
|
203
|
+
"\n"
|
204
|
+
};
|
205
|
+
|
206
|
+
uv_write_t write_req[ARRAY_SIZE(buffers)];
|
207
|
+
uv_buf_t buf[ARRAY_SIZE(buffers)];
|
208
|
+
int r, i;
|
209
|
+
uv_loop_t* loop = uv_default_loop();
|
210
|
+
|
211
|
+
ASSERT(UV_NAMED_PIPE == uv_guess_handle(0));
|
212
|
+
ASSERT(UV_NAMED_PIPE == uv_guess_handle(1));
|
213
|
+
|
214
|
+
r = uv_pipe_init(loop, &stdin_pipe, 0);
|
215
|
+
ASSERT(r == 0);
|
216
|
+
r = uv_pipe_init(loop, &stdout_pipe, 0);
|
217
|
+
ASSERT(r == 0);
|
218
|
+
|
219
|
+
uv_pipe_open(&stdin_pipe, 0);
|
220
|
+
uv_pipe_open(&stdout_pipe, 1);
|
221
|
+
|
222
|
+
/* Unref both stdio handles to make sure that all writes complete. */
|
223
|
+
uv_unref(loop);
|
224
|
+
uv_unref(loop);
|
225
|
+
|
226
|
+
for (i = 0; i < ARRAY_SIZE(buffers); i++) {
|
227
|
+
buf[i] = uv_buf_init((char*)buffers[i], strlen(buffers[i]));
|
228
|
+
}
|
229
|
+
|
230
|
+
for (i = 0; i < ARRAY_SIZE(buffers); i++) {
|
231
|
+
r = uv_write(&write_req[i], (uv_stream_t*)&stdout_pipe, &buf[i], 1,
|
232
|
+
after_pipe_write);
|
233
|
+
ASSERT(r == 0);
|
234
|
+
}
|
235
|
+
|
236
|
+
uv_run(loop);
|
237
|
+
|
238
|
+
ASSERT(after_write_called == 7);
|
239
|
+
ASSERT(on_pipe_read_called == 0);
|
240
|
+
ASSERT(close_cb_called == 0);
|
241
|
+
|
242
|
+
uv_ref(loop);
|
243
|
+
uv_ref(loop);
|
244
|
+
|
245
|
+
r = uv_read_start((uv_stream_t*)&stdin_pipe, on_read_alloc,
|
246
|
+
on_pipe_read);
|
247
|
+
ASSERT(r == 0);
|
248
|
+
|
249
|
+
uv_run(loop);
|
250
|
+
|
251
|
+
ASSERT(after_write_called == 7);
|
252
|
+
ASSERT(on_pipe_read_called == 1);
|
253
|
+
ASSERT(close_cb_called == 2);
|
254
|
+
|
255
|
+
return 0;
|
256
|
+
}
|
@@ -0,0 +1,191 @@
|
|
1
|
+
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
2
|
+
*
|
3
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
* of this software and associated documentation files (the "Software"), to
|
5
|
+
* deal in the Software without restriction, including without limitation the
|
6
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
7
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
8
|
+
* furnished to do so, subject to the following conditions:
|
9
|
+
*
|
10
|
+
* The above copyright notice and this permission notice shall be included in
|
11
|
+
* all copies or substantial portions of the Software.
|
12
|
+
*
|
13
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
18
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
19
|
+
* IN THE SOFTWARE.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#include "uv.h"
|
23
|
+
#include "task.h"
|
24
|
+
#include <stdio.h>
|
25
|
+
#include <stdlib.h>
|
26
|
+
|
27
|
+
|
28
|
+
static int close_cb_called = 0;
|
29
|
+
|
30
|
+
|
31
|
+
static void close_cb(uv_handle_t* handle) {
|
32
|
+
ASSERT(handle != NULL);
|
33
|
+
close_cb_called++;
|
34
|
+
}
|
35
|
+
|
36
|
+
|
37
|
+
TEST_IMPL(tcp_bind_error_addrinuse) {
|
38
|
+
struct sockaddr_in addr = uv_ip4_addr("0.0.0.0", TEST_PORT);
|
39
|
+
uv_tcp_t server1, server2;
|
40
|
+
int r;
|
41
|
+
|
42
|
+
r = uv_tcp_init(uv_default_loop(), &server1);
|
43
|
+
ASSERT(r == 0);
|
44
|
+
r = uv_tcp_bind(&server1, addr);
|
45
|
+
ASSERT(r == 0);
|
46
|
+
|
47
|
+
r = uv_tcp_init(uv_default_loop(), &server2);
|
48
|
+
ASSERT(r == 0);
|
49
|
+
r = uv_tcp_bind(&server2, addr);
|
50
|
+
ASSERT(r == 0);
|
51
|
+
|
52
|
+
r = uv_listen((uv_stream_t*)&server1, 128, NULL);
|
53
|
+
ASSERT(r == 0);
|
54
|
+
r = uv_listen((uv_stream_t*)&server2, 128, NULL);
|
55
|
+
ASSERT(r == -1);
|
56
|
+
|
57
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EADDRINUSE);
|
58
|
+
|
59
|
+
uv_close((uv_handle_t*)&server1, close_cb);
|
60
|
+
uv_close((uv_handle_t*)&server2, close_cb);
|
61
|
+
|
62
|
+
uv_run(uv_default_loop());
|
63
|
+
|
64
|
+
ASSERT(close_cb_called == 2);
|
65
|
+
|
66
|
+
return 0;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
TEST_IMPL(tcp_bind_error_addrnotavail_1) {
|
71
|
+
struct sockaddr_in addr = uv_ip4_addr("127.255.255.255", TEST_PORT);
|
72
|
+
uv_tcp_t server;
|
73
|
+
int r;
|
74
|
+
|
75
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
76
|
+
ASSERT(r == 0);
|
77
|
+
r = uv_tcp_bind(&server, addr);
|
78
|
+
|
79
|
+
/* It seems that Linux is broken here - bind succeeds. */
|
80
|
+
if (r == -1) {
|
81
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EADDRNOTAVAIL);
|
82
|
+
}
|
83
|
+
|
84
|
+
uv_close((uv_handle_t*)&server, close_cb);
|
85
|
+
|
86
|
+
uv_run(uv_default_loop());
|
87
|
+
|
88
|
+
ASSERT(close_cb_called == 1);
|
89
|
+
|
90
|
+
return 0;
|
91
|
+
}
|
92
|
+
|
93
|
+
|
94
|
+
TEST_IMPL(tcp_bind_error_addrnotavail_2) {
|
95
|
+
struct sockaddr_in addr = uv_ip4_addr("4.4.4.4", TEST_PORT);
|
96
|
+
uv_tcp_t server;
|
97
|
+
int r;
|
98
|
+
|
99
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
100
|
+
ASSERT(r == 0);
|
101
|
+
r = uv_tcp_bind(&server, addr);
|
102
|
+
ASSERT(r == -1);
|
103
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EADDRNOTAVAIL);
|
104
|
+
|
105
|
+
uv_close((uv_handle_t*)&server, close_cb);
|
106
|
+
|
107
|
+
uv_run(uv_default_loop());
|
108
|
+
|
109
|
+
ASSERT(close_cb_called == 1);
|
110
|
+
|
111
|
+
return 0;
|
112
|
+
}
|
113
|
+
|
114
|
+
|
115
|
+
TEST_IMPL(tcp_bind_error_fault) {
|
116
|
+
char garbage[] = "blah blah blah blah blah blah blah blah blah blah blah blah";
|
117
|
+
struct sockaddr_in* garbage_addr;
|
118
|
+
uv_tcp_t server;
|
119
|
+
int r;
|
120
|
+
|
121
|
+
garbage_addr = (struct sockaddr_in*) &garbage;
|
122
|
+
|
123
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
124
|
+
ASSERT(r == 0);
|
125
|
+
r = uv_tcp_bind(&server, *garbage_addr);
|
126
|
+
ASSERT(r == -1);
|
127
|
+
|
128
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EFAULT);
|
129
|
+
|
130
|
+
uv_close((uv_handle_t*)&server, close_cb);
|
131
|
+
|
132
|
+
uv_run(uv_default_loop());
|
133
|
+
|
134
|
+
ASSERT(close_cb_called == 1);
|
135
|
+
|
136
|
+
return 0;
|
137
|
+
}
|
138
|
+
|
139
|
+
/* Notes: On Linux uv_bind(server, NULL) will segfault the program. */
|
140
|
+
|
141
|
+
TEST_IMPL(tcp_bind_error_inval) {
|
142
|
+
struct sockaddr_in addr1 = uv_ip4_addr("0.0.0.0", TEST_PORT);
|
143
|
+
struct sockaddr_in addr2 = uv_ip4_addr("0.0.0.0", TEST_PORT_2);
|
144
|
+
uv_tcp_t server;
|
145
|
+
int r;
|
146
|
+
|
147
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
148
|
+
ASSERT(r == 0);
|
149
|
+
r = uv_tcp_bind(&server, addr1);
|
150
|
+
ASSERT(r == 0);
|
151
|
+
r = uv_tcp_bind(&server, addr2);
|
152
|
+
ASSERT(r == -1);
|
153
|
+
|
154
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EINVAL);
|
155
|
+
|
156
|
+
uv_close((uv_handle_t*)&server, close_cb);
|
157
|
+
|
158
|
+
uv_run(uv_default_loop());
|
159
|
+
|
160
|
+
ASSERT(close_cb_called == 1);
|
161
|
+
|
162
|
+
return 0;
|
163
|
+
}
|
164
|
+
|
165
|
+
|
166
|
+
TEST_IMPL(tcp_bind_localhost_ok) {
|
167
|
+
struct sockaddr_in addr = uv_ip4_addr("127.0.0.1", TEST_PORT);
|
168
|
+
|
169
|
+
uv_tcp_t server;
|
170
|
+
int r;
|
171
|
+
|
172
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
173
|
+
ASSERT(r == 0);
|
174
|
+
r = uv_tcp_bind(&server, addr);
|
175
|
+
ASSERT(r == 0);
|
176
|
+
|
177
|
+
return 0;
|
178
|
+
}
|
179
|
+
|
180
|
+
|
181
|
+
TEST_IMPL(tcp_listen_without_bind) {
|
182
|
+
int r;
|
183
|
+
uv_tcp_t server;
|
184
|
+
|
185
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
186
|
+
ASSERT(r == 0);
|
187
|
+
r = uv_listen((uv_stream_t*)&server, 128, NULL);
|
188
|
+
ASSERT(r == 0);
|
189
|
+
|
190
|
+
return 0;
|
191
|
+
}
|
@@ -0,0 +1,154 @@
|
|
1
|
+
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
2
|
+
*
|
3
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
* of this software and associated documentation files (the "Software"), to
|
5
|
+
* deal in the Software without restriction, including without limitation the
|
6
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
7
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
8
|
+
* furnished to do so, subject to the following conditions:
|
9
|
+
*
|
10
|
+
* The above copyright notice and this permission notice shall be included in
|
11
|
+
* all copies or substantial portions of the Software.
|
12
|
+
*
|
13
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
18
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
19
|
+
* IN THE SOFTWARE.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#include "uv.h"
|
23
|
+
#include "task.h"
|
24
|
+
#include <stdio.h>
|
25
|
+
#include <stdlib.h>
|
26
|
+
|
27
|
+
|
28
|
+
static int close_cb_called = 0;
|
29
|
+
|
30
|
+
|
31
|
+
static void close_cb(uv_handle_t* handle) {
|
32
|
+
ASSERT(handle != NULL);
|
33
|
+
close_cb_called++;
|
34
|
+
}
|
35
|
+
|
36
|
+
|
37
|
+
TEST_IMPL(tcp_bind6_error_addrinuse) {
|
38
|
+
struct sockaddr_in6 addr = uv_ip6_addr("::", TEST_PORT);
|
39
|
+
uv_tcp_t server1, server2;
|
40
|
+
int r;
|
41
|
+
|
42
|
+
r = uv_tcp_init(uv_default_loop(), &server1);
|
43
|
+
ASSERT(r == 0);
|
44
|
+
r = uv_tcp_bind6(&server1, addr);
|
45
|
+
ASSERT(r == 0);
|
46
|
+
|
47
|
+
r = uv_tcp_init(uv_default_loop(), &server2);
|
48
|
+
ASSERT(r == 0);
|
49
|
+
r = uv_tcp_bind6(&server2, addr);
|
50
|
+
ASSERT(r == 0);
|
51
|
+
|
52
|
+
r = uv_listen((uv_stream_t*)&server1, 128, NULL);
|
53
|
+
ASSERT(r == 0);
|
54
|
+
r = uv_listen((uv_stream_t*)&server2, 128, NULL);
|
55
|
+
ASSERT(r == -1);
|
56
|
+
|
57
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EADDRINUSE);
|
58
|
+
|
59
|
+
uv_close((uv_handle_t*)&server1, close_cb);
|
60
|
+
uv_close((uv_handle_t*)&server2, close_cb);
|
61
|
+
|
62
|
+
uv_run(uv_default_loop());
|
63
|
+
|
64
|
+
ASSERT(close_cb_called == 2);
|
65
|
+
|
66
|
+
return 0;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
TEST_IMPL(tcp_bind6_error_addrnotavail) {
|
71
|
+
struct sockaddr_in6 addr = uv_ip6_addr("4:4:4:4:4:4:4:4", TEST_PORT);
|
72
|
+
uv_tcp_t server;
|
73
|
+
int r;
|
74
|
+
|
75
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
76
|
+
ASSERT(r == 0);
|
77
|
+
r = uv_tcp_bind6(&server, addr);
|
78
|
+
ASSERT(r == -1);
|
79
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EADDRNOTAVAIL);
|
80
|
+
|
81
|
+
uv_close((uv_handle_t*)&server, close_cb);
|
82
|
+
|
83
|
+
uv_run(uv_default_loop());
|
84
|
+
|
85
|
+
ASSERT(close_cb_called == 1);
|
86
|
+
|
87
|
+
return 0;
|
88
|
+
}
|
89
|
+
|
90
|
+
|
91
|
+
TEST_IMPL(tcp_bind6_error_fault) {
|
92
|
+
char garbage[] = "blah blah blah blah blah blah blah blah blah blah blah blah";
|
93
|
+
struct sockaddr_in6* garbage_addr;
|
94
|
+
uv_tcp_t server;
|
95
|
+
int r;
|
96
|
+
|
97
|
+
garbage_addr = (struct sockaddr_in6*) &garbage;
|
98
|
+
|
99
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
100
|
+
ASSERT(r == 0);
|
101
|
+
r = uv_tcp_bind6(&server, *garbage_addr);
|
102
|
+
ASSERT(r == -1);
|
103
|
+
|
104
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EFAULT);
|
105
|
+
|
106
|
+
uv_close((uv_handle_t*)&server, close_cb);
|
107
|
+
|
108
|
+
uv_run(uv_default_loop());
|
109
|
+
|
110
|
+
ASSERT(close_cb_called == 1);
|
111
|
+
|
112
|
+
return 0;
|
113
|
+
}
|
114
|
+
|
115
|
+
/* Notes: On Linux uv_bind6(server, NULL) will segfault the program. */
|
116
|
+
|
117
|
+
TEST_IMPL(tcp_bind6_error_inval) {
|
118
|
+
struct sockaddr_in6 addr1 = uv_ip6_addr("::", TEST_PORT);
|
119
|
+
struct sockaddr_in6 addr2 = uv_ip6_addr("::", TEST_PORT_2);
|
120
|
+
uv_tcp_t server;
|
121
|
+
int r;
|
122
|
+
|
123
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
124
|
+
ASSERT(r == 0);
|
125
|
+
r = uv_tcp_bind6(&server, addr1);
|
126
|
+
ASSERT(r == 0);
|
127
|
+
r = uv_tcp_bind6(&server, addr2);
|
128
|
+
ASSERT(r == -1);
|
129
|
+
|
130
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EINVAL);
|
131
|
+
|
132
|
+
uv_close((uv_handle_t*)&server, close_cb);
|
133
|
+
|
134
|
+
uv_run(uv_default_loop());
|
135
|
+
|
136
|
+
ASSERT(close_cb_called == 1);
|
137
|
+
|
138
|
+
return 0;
|
139
|
+
}
|
140
|
+
|
141
|
+
|
142
|
+
TEST_IMPL(tcp_bind6_localhost_ok) {
|
143
|
+
struct sockaddr_in6 addr = uv_ip6_addr("::1", TEST_PORT);
|
144
|
+
|
145
|
+
uv_tcp_t server;
|
146
|
+
int r;
|
147
|
+
|
148
|
+
r = uv_tcp_init(uv_default_loop(), &server);
|
149
|
+
ASSERT(r == 0);
|
150
|
+
r = uv_tcp_bind6(&server, addr);
|
151
|
+
ASSERT(r == 0);
|
152
|
+
|
153
|
+
return 0;
|
154
|
+
}
|