noderb 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +19 -0
- data/README.md +25 -0
- data/ext/noderb_extension/extconf.rb +11 -0
- data/ext/noderb_extension/libuv/AUTHORS +11 -0
- data/ext/noderb_extension/libuv/LICENSE +48 -0
- data/ext/noderb_extension/libuv/Makefile +119 -0
- data/ext/noderb_extension/libuv/README +45 -0
- data/ext/noderb_extension/libuv/build/all.gyp +254 -0
- data/ext/noderb_extension/libuv/build/common.gypi +13 -0
- data/ext/noderb_extension/libuv/build/gyp_uv +43 -0
- data/ext/noderb_extension/libuv/config-mingw.mk +67 -0
- data/ext/noderb_extension/libuv/config-unix.mk +121 -0
- data/ext/noderb_extension/libuv/create-msvs-files.bat +14 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ANNOUNCE +482 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/BUGS +141 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/Bmakefile +268 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/CONTRIBUTORS +140 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/COPYING +150 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/COPYING.LIB +504 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ChangeLog +5194 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/FAQ +451 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/GNUmakefile +593 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/MAINTAINERS +4 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/Makefile +516 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/NEWS +1245 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/Nmakefile +24 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/Nmakefile.tests +260 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/PROGRESS +4 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/README +601 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/README.Borland +57 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/README.CV +3036 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/README.NONPORTABLE +783 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/README.Watcom +62 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/README.WinCE +6 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/TODO +7 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/WinCE-PORT +222 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/attr.c +53 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/autostatic.c +69 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/barrier.c +47 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/build/all.gyp +207 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/builddmc.bat +9 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/cancel.c +44 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/cleanup.c +148 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/condvar.c +50 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/config.h +153 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/context.h +74 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/create.c +308 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/dll.c +92 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/errno.c +94 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/exit.c +44 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/fork.c +39 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/global.c +107 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/implement.h +944 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/misc.c +50 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/mutex.c +62 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/need_errno.h +145 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/nonportable.c +47 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/private.c +54 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread.c +66 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread.dsp +142 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread.dsw +29 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread.h +1368 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_destroy.c +79 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getdetachstate.c +86 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getinheritsched.c +51 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getschedparam.c +52 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getschedpolicy.c +61 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getscope.c +54 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getstackaddr.c +97 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_getstacksize.c +100 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_init.c +117 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setdetachstate.c +91 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setinheritsched.c +57 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setschedparam.c +63 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setschedpolicy.c +55 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setscope.c +62 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setstackaddr.c +97 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_attr_setstacksize.c +110 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrier_destroy.c +103 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrier_init.c +69 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrier_wait.c +104 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrierattr_destroy.c +83 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrierattr_getpshared.c +95 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrierattr_init.c +85 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_barrierattr_setpshared.c +119 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_cancel.c +189 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_cond_destroy.c +253 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_cond_init.c +167 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_cond_signal.c +231 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_cond_wait.c +567 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_condattr_destroy.c +86 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_condattr_getpshared.c +97 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_condattr_init.c +87 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_condattr_setpshared.c +117 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_delay_np.c +172 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_detach.c +136 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_equal.c +76 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_exit.c +106 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_getconcurrency.c +45 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_getschedparam.c +75 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_getspecific.c +87 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_getunique_np.c +47 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_getw32threadhandle_np.c +65 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_join.c +157 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_key_create.c +108 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_key_delete.c +125 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_kill.c +105 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_consistent.c +187 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_destroy.c +148 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_init.c +130 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_lock.c +269 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_timedlock.c +324 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_trylock.c +154 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutex_unlock.c +175 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_destroy.c +83 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_getkind_np.c +44 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_getpshared.c +95 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_getrobust.c +113 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_gettype.c +56 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_init.c +86 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_setkind_np.c +44 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_setpshared.c +119 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_setrobust.c +119 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_mutexattr_settype.c +143 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_num_processors_np.c +56 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_once.c +79 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_destroy.c +143 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_init.c +109 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_rdlock.c +102 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_timedrdlock.c +109 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_timedwrlock.c +139 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_tryrdlock.c +102 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_trywrlock.c +122 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_unlock.c +93 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlock_wrlock.c +133 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlockattr_destroy.c +84 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlockattr_getpshared.c +97 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlockattr_init.c +83 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_rwlockattr_setpshared.c +120 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_self.c +141 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_setcancelstate.c +125 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_setcanceltype.c +126 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_setconcurrency.c +53 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_setschedparam.c +123 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_setspecific.c +167 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_spin_destroy.c +111 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_spin_init.c +123 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_spin_lock.c +80 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_spin_trylock.c +77 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_spin_unlock.c +71 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_testcancel.c +103 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_timechange_handler_np.c +108 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/pthread_win32_attach_detach_np.c +258 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_MCS_lock.c +278 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_callUserDestroyRoutines.c +232 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_calloc.c +56 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_cond_check_need_init.c +78 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_getprocessors.c +91 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_is_attr.c +47 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_mutex_check_need_init.c +92 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_new.c +94 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_processInitialize.c +92 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_processTerminate.c +105 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_relmillisecs.c +132 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_reuse.c +151 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_rwlock_cancelwrwait.c +50 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_rwlock_check_need_init.c +77 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_semwait.c +135 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_spinlock_check_need_init.c +78 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_threadDestroy.c +79 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_threadStart.c +357 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_throw.c +189 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_timespec.c +83 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_tkAssocCreate.c +118 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/ptw32_tkAssocDestroy.c +114 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/rwlock.c +51 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched.c +53 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched.h +183 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched_get_priority_max.c +134 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched_get_priority_min.c +135 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched_getscheduler.c +71 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched_setscheduler.c +83 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sched_yield.c +71 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_close.c +58 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_destroy.c +144 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_getvalue.c +110 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_init.c +169 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_open.c +58 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_post.c +128 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_post_multiple.c +142 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_timedwait.c +238 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_trywait.c +117 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_unlink.c +58 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sem_wait.c +187 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/semaphore.c +69 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/semaphore.h +169 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/signal.c +179 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/spin.c +46 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/sync.c +43 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/tsd.c +44 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/version.rc +388 -0
- data/ext/noderb_extension/libuv/deps/pthread-win32/w32_CancelableWait.c +161 -0
- data/ext/noderb_extension/libuv/doc/desired-api.md +159 -0
- data/ext/noderb_extension/libuv/doc/iocp-links.html +574 -0
- data/ext/noderb_extension/libuv/include/ares.h +582 -0
- data/ext/noderb_extension/libuv/include/ares_version.h +24 -0
- data/ext/noderb_extension/libuv/include/eio.h +376 -0
- data/ext/noderb_extension/libuv/include/ev.h +835 -0
- data/ext/noderb_extension/libuv/include/ngx-queue.h +102 -0
- data/ext/noderb_extension/libuv/include/tree.h +762 -0
- data/ext/noderb_extension/libuv/include/uv-unix.h +138 -0
- data/ext/noderb_extension/libuv/include/uv-win.h +187 -0
- data/ext/noderb_extension/libuv/include/uv.h +635 -0
- data/ext/noderb_extension/libuv/src/ares/AUTHORS +37 -0
- data/ext/noderb_extension/libuv/src/ares/CHANGES +1198 -0
- data/ext/noderb_extension/libuv/src/ares/CMakeLists.txt +22 -0
- data/ext/noderb_extension/libuv/src/ares/NEWS +21 -0
- data/ext/noderb_extension/libuv/src/ares/README +60 -0
- data/ext/noderb_extension/libuv/src/ares/README.cares +13 -0
- data/ext/noderb_extension/libuv/src/ares/README.msvc +118 -0
- data/ext/noderb_extension/libuv/src/ares/README.node +21 -0
- data/ext/noderb_extension/libuv/src/ares/RELEASE-NOTES +25 -0
- data/ext/noderb_extension/libuv/src/ares/TODO +23 -0
- data/ext/noderb_extension/libuv/src/ares/ares__close_sockets.c +66 -0
- data/ext/noderb_extension/libuv/src/ares/ares__get_hostent.c +263 -0
- data/ext/noderb_extension/libuv/src/ares/ares__read_line.c +71 -0
- data/ext/noderb_extension/libuv/src/ares/ares__timeval.c +111 -0
- data/ext/noderb_extension/libuv/src/ares/ares_cancel.c +63 -0
- data/ext/noderb_extension/libuv/src/ares/ares_data.c +190 -0
- data/ext/noderb_extension/libuv/src/ares/ares_data.h +65 -0
- data/ext/noderb_extension/libuv/src/ares/ares_destroy.c +105 -0
- data/ext/noderb_extension/libuv/src/ares/ares_dns.h +90 -0
- data/ext/noderb_extension/libuv/src/ares/ares_expand_name.c +193 -0
- data/ext/noderb_extension/libuv/src/ares/ares_expand_string.c +75 -0
- data/ext/noderb_extension/libuv/src/ares/ares_fds.c +62 -0
- data/ext/noderb_extension/libuv/src/ares/ares_free_hostent.c +39 -0
- data/ext/noderb_extension/libuv/src/ares/ares_free_string.c +25 -0
- data/ext/noderb_extension/libuv/src/ares/ares_gethostbyaddr.c +292 -0
- data/ext/noderb_extension/libuv/src/ares/ares_gethostbyname.c +515 -0
- data/ext/noderb_extension/libuv/src/ares/ares_getnameinfo.c +426 -0
- data/ext/noderb_extension/libuv/src/ares/ares_getopt.c +122 -0
- data/ext/noderb_extension/libuv/src/ares/ares_getopt.h +53 -0
- data/ext/noderb_extension/libuv/src/ares/ares_getsock.c +72 -0
- data/ext/noderb_extension/libuv/src/ares/ares_init.c +1665 -0
- data/ext/noderb_extension/libuv/src/ares/ares_ipv6.h +78 -0
- data/ext/noderb_extension/libuv/src/ares/ares_library_init.c +132 -0
- data/ext/noderb_extension/libuv/src/ares/ares_library_init.h +39 -0
- data/ext/noderb_extension/libuv/src/ares/ares_llist.c +86 -0
- data/ext/noderb_extension/libuv/src/ares/ares_llist.h +42 -0
- data/ext/noderb_extension/libuv/src/ares/ares_mkquery.c +195 -0
- data/ext/noderb_extension/libuv/src/ares/ares_nowarn.c +59 -0
- data/ext/noderb_extension/libuv/src/ares/ares_nowarn.h +24 -0
- data/ext/noderb_extension/libuv/src/ares/ares_options.c +253 -0
- data/ext/noderb_extension/libuv/src/ares/ares_parse_a_reply.c +260 -0
- data/ext/noderb_extension/libuv/src/ares/ares_parse_aaaa_reply.c +256 -0
- data/ext/noderb_extension/libuv/src/ares/ares_parse_mx_reply.c +170 -0
- data/ext/noderb_extension/libuv/src/ares/ares_parse_ns_reply.c +182 -0
- data/ext/noderb_extension/libuv/src/ares/ares_parse_ptr_reply.c +208 -0
- data/ext/noderb_extension/libuv/src/ares/ares_parse_srv_reply.c +179 -0
- data/ext/noderb_extension/libuv/src/ares/ares_parse_txt_reply.c +201 -0
- data/ext/noderb_extension/libuv/src/ares/ares_private.h +351 -0
- data/ext/noderb_extension/libuv/src/ares/ares_process.c +1296 -0
- data/ext/noderb_extension/libuv/src/ares/ares_query.c +183 -0
- data/ext/noderb_extension/libuv/src/ares/ares_rules.h +144 -0
- data/ext/noderb_extension/libuv/src/ares/ares_search.c +322 -0
- data/ext/noderb_extension/libuv/src/ares/ares_send.c +134 -0
- data/ext/noderb_extension/libuv/src/ares/ares_setup.h +191 -0
- data/ext/noderb_extension/libuv/src/ares/ares_strcasecmp.c +66 -0
- data/ext/noderb_extension/libuv/src/ares/ares_strcasecmp.h +30 -0
- data/ext/noderb_extension/libuv/src/ares/ares_strdup.c +42 -0
- data/ext/noderb_extension/libuv/src/ares/ares_strdup.h +26 -0
- data/ext/noderb_extension/libuv/src/ares/ares_strerror.c +56 -0
- data/ext/noderb_extension/libuv/src/ares/ares_timeout.c +80 -0
- data/ext/noderb_extension/libuv/src/ares/ares_version.c +11 -0
- data/ext/noderb_extension/libuv/src/ares/ares_writev.c +79 -0
- data/ext/noderb_extension/libuv/src/ares/ares_writev.h +36 -0
- data/ext/noderb_extension/libuv/src/ares/bitncmp.c +59 -0
- data/ext/noderb_extension/libuv/src/ares/bitncmp.h +26 -0
- data/ext/noderb_extension/libuv/src/ares/config_cygwin/ares_config.h +510 -0
- data/ext/noderb_extension/libuv/src/ares/config_darwin/ares_config.h +510 -0
- data/ext/noderb_extension/libuv/src/ares/config_freebsd/ares_config.h +510 -0
- data/ext/noderb_extension/libuv/src/ares/config_linux/ares_config.h +510 -0
- data/ext/noderb_extension/libuv/src/ares/config_openbsd/ares_config.h +510 -0
- data/ext/noderb_extension/libuv/src/ares/config_sunos/ares_config.h +510 -0
- data/ext/noderb_extension/libuv/src/ares/config_win32/ares_config.h +369 -0
- data/ext/noderb_extension/libuv/src/ares/get_ver.awk +35 -0
- data/ext/noderb_extension/libuv/src/ares/inet_net_pton.c +450 -0
- data/ext/noderb_extension/libuv/src/ares/inet_net_pton.h +31 -0
- data/ext/noderb_extension/libuv/src/ares/inet_ntop.c +232 -0
- data/ext/noderb_extension/libuv/src/ares/inet_ntop.h +27 -0
- data/ext/noderb_extension/libuv/src/ares/nameser.h +193 -0
- data/ext/noderb_extension/libuv/src/ares/setup_once.h +488 -0
- data/ext/noderb_extension/libuv/src/ares/windows_port.c +22 -0
- data/ext/noderb_extension/libuv/src/eio/Changes +63 -0
- data/ext/noderb_extension/libuv/src/eio/LICENSE +36 -0
- data/ext/noderb_extension/libuv/src/eio/Makefile.am +15 -0
- data/ext/noderb_extension/libuv/src/eio/aclocal.m4 +8957 -0
- data/ext/noderb_extension/libuv/src/eio/autogen.sh +3 -0
- data/ext/noderb_extension/libuv/src/eio/config.h.in +86 -0
- data/ext/noderb_extension/libuv/src/eio/config_cygwin.h +77 -0
- data/ext/noderb_extension/libuv/src/eio/config_darwin.h +137 -0
- data/ext/noderb_extension/libuv/src/eio/config_freebsd.h +78 -0
- data/ext/noderb_extension/libuv/src/eio/config_linux.h +101 -0
- data/ext/noderb_extension/libuv/src/eio/config_sunos.h +81 -0
- data/ext/noderb_extension/libuv/src/eio/configure.ac +22 -0
- data/ext/noderb_extension/libuv/src/eio/demo.c +194 -0
- data/ext/noderb_extension/libuv/src/eio/ecb.h +370 -0
- data/ext/noderb_extension/libuv/src/eio/eio.3 +3428 -0
- data/ext/noderb_extension/libuv/src/eio/eio.c +2562 -0
- data/ext/noderb_extension/libuv/src/eio/eio.pod +969 -0
- data/ext/noderb_extension/libuv/src/eio/libeio.m4 +195 -0
- data/ext/noderb_extension/libuv/src/eio/xthread.h +164 -0
- data/ext/noderb_extension/libuv/src/ev/Changes +388 -0
- data/ext/noderb_extension/libuv/src/ev/LICENSE +36 -0
- data/ext/noderb_extension/libuv/src/ev/Makefile.am +18 -0
- data/ext/noderb_extension/libuv/src/ev/Makefile.in +771 -0
- data/ext/noderb_extension/libuv/src/ev/README +58 -0
- data/ext/noderb_extension/libuv/src/ev/aclocal.m4 +8957 -0
- data/ext/noderb_extension/libuv/src/ev/autogen.sh +6 -0
- data/ext/noderb_extension/libuv/src/ev/config.guess +1526 -0
- data/ext/noderb_extension/libuv/src/ev/config.h.in +125 -0
- data/ext/noderb_extension/libuv/src/ev/config.sub +1658 -0
- data/ext/noderb_extension/libuv/src/ev/config_cygwin.h +123 -0
- data/ext/noderb_extension/libuv/src/ev/config_darwin.h +122 -0
- data/ext/noderb_extension/libuv/src/ev/config_freebsd.h +120 -0
- data/ext/noderb_extension/libuv/src/ev/config_linux.h +130 -0
- data/ext/noderb_extension/libuv/src/ev/config_sunos.h +122 -0
- data/ext/noderb_extension/libuv/src/ev/configure +13037 -0
- data/ext/noderb_extension/libuv/src/ev/configure.ac +18 -0
- data/ext/noderb_extension/libuv/src/ev/depcomp +630 -0
- data/ext/noderb_extension/libuv/src/ev/ev++.h +816 -0
- data/ext/noderb_extension/libuv/src/ev/ev.3 +5311 -0
- data/ext/noderb_extension/libuv/src/ev/ev.c +3913 -0
- data/ext/noderb_extension/libuv/src/ev/ev.pod +5243 -0
- data/ext/noderb_extension/libuv/src/ev/ev_epoll.c +266 -0
- data/ext/noderb_extension/libuv/src/ev/ev_kqueue.c +198 -0
- data/ext/noderb_extension/libuv/src/ev/ev_poll.c +148 -0
- data/ext/noderb_extension/libuv/src/ev/ev_port.c +179 -0
- data/ext/noderb_extension/libuv/src/ev/ev_select.c +310 -0
- data/ext/noderb_extension/libuv/src/ev/ev_vars.h +203 -0
- data/ext/noderb_extension/libuv/src/ev/ev_win32.c +153 -0
- data/ext/noderb_extension/libuv/src/ev/ev_wrap.h +196 -0
- data/ext/noderb_extension/libuv/src/ev/event.c +402 -0
- data/ext/noderb_extension/libuv/src/ev/event.h +170 -0
- data/ext/noderb_extension/libuv/src/ev/install-sh +294 -0
- data/ext/noderb_extension/libuv/src/ev/libev.m4 +39 -0
- data/ext/noderb_extension/libuv/src/ev/ltmain.sh +8413 -0
- data/ext/noderb_extension/libuv/src/ev/missing +336 -0
- data/ext/noderb_extension/libuv/src/ev/mkinstalldirs +111 -0
- data/ext/noderb_extension/libuv/src/uv-common.c +172 -0
- data/ext/noderb_extension/libuv/src/uv-common.h +53 -0
- data/ext/noderb_extension/libuv/src/uv-cygwin.c +52 -0
- data/ext/noderb_extension/libuv/src/uv-darwin.c +64 -0
- data/ext/noderb_extension/libuv/src/uv-eio.c +113 -0
- data/ext/noderb_extension/libuv/src/uv-eio.h +13 -0
- data/ext/noderb_extension/libuv/src/uv-freebsd.c +65 -0
- data/ext/noderb_extension/libuv/src/uv-linux.c +51 -0
- data/ext/noderb_extension/libuv/src/uv-sunos.c +60 -0
- data/ext/noderb_extension/libuv/src/uv-unix.c +2408 -0
- data/ext/noderb_extension/libuv/src/win/async.c +129 -0
- data/ext/noderb_extension/libuv/src/win/cares.c +304 -0
- data/ext/noderb_extension/libuv/src/win/core.c +155 -0
- data/ext/noderb_extension/libuv/src/win/error.c +140 -0
- data/ext/noderb_extension/libuv/src/win/getaddrinfo.c +341 -0
- data/ext/noderb_extension/libuv/src/win/handle.c +176 -0
- data/ext/noderb_extension/libuv/src/win/internal.h +237 -0
- data/ext/noderb_extension/libuv/src/win/loop-watcher.c +128 -0
- data/ext/noderb_extension/libuv/src/win/pipe.c +828 -0
- data/ext/noderb_extension/libuv/src/win/process.c +936 -0
- data/ext/noderb_extension/libuv/src/win/req.c +141 -0
- data/ext/noderb_extension/libuv/src/win/stdio.c +75 -0
- data/ext/noderb_extension/libuv/src/win/stream.c +149 -0
- data/ext/noderb_extension/libuv/src/win/tcp.c +895 -0
- data/ext/noderb_extension/libuv/src/win/timer.c +269 -0
- data/ext/noderb_extension/libuv/src/win/util.c +82 -0
- data/ext/noderb_extension/libuv/test/benchmark-ares.c +117 -0
- data/ext/noderb_extension/libuv/test/benchmark-getaddrinfo.c +90 -0
- data/ext/noderb_extension/libuv/test/benchmark-list.h +77 -0
- data/ext/noderb_extension/libuv/test/benchmark-ping-pongs.c +210 -0
- data/ext/noderb_extension/libuv/test/benchmark-pound.c +237 -0
- data/ext/noderb_extension/libuv/test/benchmark-pump.c +459 -0
- data/ext/noderb_extension/libuv/test/benchmark-sizes.c +39 -0
- data/ext/noderb_extension/libuv/test/benchmark-spawn.c +154 -0
- data/ext/noderb_extension/libuv/test/dns-server.c +323 -0
- data/ext/noderb_extension/libuv/test/echo-server.c +299 -0
- data/ext/noderb_extension/libuv/test/run-benchmarks.c +64 -0
- data/ext/noderb_extension/libuv/test/run-tests.c +82 -0
- data/ext/noderb_extension/libuv/test/runner-unix.c +335 -0
- data/ext/noderb_extension/libuv/test/runner-unix.h +36 -0
- data/ext/noderb_extension/libuv/test/runner-win.c +343 -0
- data/ext/noderb_extension/libuv/test/runner-win.h +42 -0
- data/ext/noderb_extension/libuv/test/runner.c +311 -0
- data/ext/noderb_extension/libuv/test/runner.h +155 -0
- data/ext/noderb_extension/libuv/test/task.h +111 -0
- data/ext/noderb_extension/libuv/test/test-async.c +218 -0
- data/ext/noderb_extension/libuv/test/test-callback-stack.c +205 -0
- data/ext/noderb_extension/libuv/test/test-connection-fail.c +149 -0
- data/ext/noderb_extension/libuv/test/test-delayed-accept.c +198 -0
- data/ext/noderb_extension/libuv/test/test-fail-always.c +29 -0
- data/ext/noderb_extension/libuv/test/test-get-currentexe.c +53 -0
- data/ext/noderb_extension/libuv/test/test-getaddrinfo.c +110 -0
- data/ext/noderb_extension/libuv/test/test-gethostbyname.c +192 -0
- data/ext/noderb_extension/libuv/test/test-getsockname.c +196 -0
- data/ext/noderb_extension/libuv/test/test-hrtime.c +51 -0
- data/ext/noderb_extension/libuv/test/test-idle.c +83 -0
- data/ext/noderb_extension/libuv/test/test-list.h +165 -0
- data/ext/noderb_extension/libuv/test/test-loop-handles.c +361 -0
- data/ext/noderb_extension/libuv/test/test-pass-always.c +28 -0
- data/ext/noderb_extension/libuv/test/test-ping-pong.c +256 -0
- data/ext/noderb_extension/libuv/test/test-pipe-bind-error.c +148 -0
- data/ext/noderb_extension/libuv/test/test-ref.c +91 -0
- data/ext/noderb_extension/libuv/test/test-shutdown-eof.c +183 -0
- data/ext/noderb_extension/libuv/test/test-spawn.c +345 -0
- data/ext/noderb_extension/libuv/test/test-tcp-bind-error.c +204 -0
- data/ext/noderb_extension/libuv/test/test-tcp-bind6-error.c +164 -0
- data/ext/noderb_extension/libuv/test/test-tcp-writealot.c +198 -0
- data/ext/noderb_extension/libuv/test/test-timer-again.c +141 -0
- data/ext/noderb_extension/libuv/test/test-timer.c +134 -0
- data/ext/noderb_extension/noderb.c +340 -0
- data/ext/noderb_extension/noderb.h +2 -0
- data/lib/noderb/connection.rb +21 -0
- data/lib/noderb/process.rb +17 -0
- data/lib/noderb.rb +25 -0
- metadata +470 -0
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
#! /bin/sh
|
|
2
|
+
# Common stub for a few missing GNU programs while installing.
|
|
3
|
+
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
|
|
4
|
+
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
|
5
|
+
|
|
6
|
+
# This program is free software; you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU General Public License as published by
|
|
8
|
+
# the Free Software Foundation; either version 2, or (at your option)
|
|
9
|
+
# any later version.
|
|
10
|
+
|
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU General Public License for more details.
|
|
15
|
+
|
|
16
|
+
# You should have received a copy of the GNU General Public License
|
|
17
|
+
# along with this program; if not, write to the Free Software
|
|
18
|
+
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
19
|
+
# 02111-1307, USA.
|
|
20
|
+
|
|
21
|
+
# As a special exception to the GNU General Public License, if you
|
|
22
|
+
# distribute this file as part of a program that contains a
|
|
23
|
+
# configuration script generated by Autoconf, you may include it under
|
|
24
|
+
# the same distribution terms that you use for the rest of that program.
|
|
25
|
+
|
|
26
|
+
if test $# -eq 0; then
|
|
27
|
+
echo 1>&2 "Try \`$0 --help' for more information"
|
|
28
|
+
exit 1
|
|
29
|
+
fi
|
|
30
|
+
|
|
31
|
+
run=:
|
|
32
|
+
|
|
33
|
+
# In the cases where this matters, `missing' is being run in the
|
|
34
|
+
# srcdir already.
|
|
35
|
+
if test -f configure.ac; then
|
|
36
|
+
configure_ac=configure.ac
|
|
37
|
+
else
|
|
38
|
+
configure_ac=configure.in
|
|
39
|
+
fi
|
|
40
|
+
|
|
41
|
+
case "$1" in
|
|
42
|
+
--run)
|
|
43
|
+
# Try to run requested program, and just exit if it succeeds.
|
|
44
|
+
run=
|
|
45
|
+
shift
|
|
46
|
+
"$@" && exit 0
|
|
47
|
+
;;
|
|
48
|
+
esac
|
|
49
|
+
|
|
50
|
+
# If it does not exist, or fails to run (possibly an outdated version),
|
|
51
|
+
# try to emulate it.
|
|
52
|
+
case "$1" in
|
|
53
|
+
|
|
54
|
+
-h|--h|--he|--hel|--help)
|
|
55
|
+
echo "\
|
|
56
|
+
$0 [OPTION]... PROGRAM [ARGUMENT]...
|
|
57
|
+
|
|
58
|
+
Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
|
|
59
|
+
error status if there is no known handling for PROGRAM.
|
|
60
|
+
|
|
61
|
+
Options:
|
|
62
|
+
-h, --help display this help and exit
|
|
63
|
+
-v, --version output version information and exit
|
|
64
|
+
--run try to run the given command, and emulate it if it fails
|
|
65
|
+
|
|
66
|
+
Supported PROGRAM values:
|
|
67
|
+
aclocal touch file \`aclocal.m4'
|
|
68
|
+
autoconf touch file \`configure'
|
|
69
|
+
autoheader touch file \`config.h.in'
|
|
70
|
+
automake touch all \`Makefile.in' files
|
|
71
|
+
bison create \`y.tab.[ch]', if possible, from existing .[ch]
|
|
72
|
+
flex create \`lex.yy.c', if possible, from existing .c
|
|
73
|
+
help2man touch the output file
|
|
74
|
+
lex create \`lex.yy.c', if possible, from existing .c
|
|
75
|
+
makeinfo touch the output file
|
|
76
|
+
tar try tar, gnutar, gtar, then tar without non-portable flags
|
|
77
|
+
yacc create \`y.tab.[ch]', if possible, from existing .[ch]"
|
|
78
|
+
;;
|
|
79
|
+
|
|
80
|
+
-v|--v|--ve|--ver|--vers|--versi|--versio|--version)
|
|
81
|
+
echo "missing 0.4 - GNU automake"
|
|
82
|
+
;;
|
|
83
|
+
|
|
84
|
+
-*)
|
|
85
|
+
echo 1>&2 "$0: Unknown \`$1' option"
|
|
86
|
+
echo 1>&2 "Try \`$0 --help' for more information"
|
|
87
|
+
exit 1
|
|
88
|
+
;;
|
|
89
|
+
|
|
90
|
+
aclocal*)
|
|
91
|
+
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
92
|
+
# We have it, but it failed.
|
|
93
|
+
exit 1
|
|
94
|
+
fi
|
|
95
|
+
|
|
96
|
+
echo 1>&2 "\
|
|
97
|
+
WARNING: \`$1' is missing on your system. You should only need it if
|
|
98
|
+
you modified \`acinclude.m4' or \`${configure_ac}'. You might want
|
|
99
|
+
to install the \`Automake' and \`Perl' packages. Grab them from
|
|
100
|
+
any GNU archive site."
|
|
101
|
+
touch aclocal.m4
|
|
102
|
+
;;
|
|
103
|
+
|
|
104
|
+
autoconf)
|
|
105
|
+
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
106
|
+
# We have it, but it failed.
|
|
107
|
+
exit 1
|
|
108
|
+
fi
|
|
109
|
+
|
|
110
|
+
echo 1>&2 "\
|
|
111
|
+
WARNING: \`$1' is missing on your system. You should only need it if
|
|
112
|
+
you modified \`${configure_ac}'. You might want to install the
|
|
113
|
+
\`Autoconf' and \`GNU m4' packages. Grab them from any GNU
|
|
114
|
+
archive site."
|
|
115
|
+
touch configure
|
|
116
|
+
;;
|
|
117
|
+
|
|
118
|
+
autoheader)
|
|
119
|
+
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
120
|
+
# We have it, but it failed.
|
|
121
|
+
exit 1
|
|
122
|
+
fi
|
|
123
|
+
|
|
124
|
+
echo 1>&2 "\
|
|
125
|
+
WARNING: \`$1' is missing on your system. You should only need it if
|
|
126
|
+
you modified \`acconfig.h' or \`${configure_ac}'. You might want
|
|
127
|
+
to install the \`Autoconf' and \`GNU m4' packages. Grab them
|
|
128
|
+
from any GNU archive site."
|
|
129
|
+
files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
|
|
130
|
+
test -z "$files" && files="config.h"
|
|
131
|
+
touch_files=
|
|
132
|
+
for f in $files; do
|
|
133
|
+
case "$f" in
|
|
134
|
+
*:*) touch_files="$touch_files "`echo "$f" |
|
|
135
|
+
sed -e 's/^[^:]*://' -e 's/:.*//'`;;
|
|
136
|
+
*) touch_files="$touch_files $f.in";;
|
|
137
|
+
esac
|
|
138
|
+
done
|
|
139
|
+
touch $touch_files
|
|
140
|
+
;;
|
|
141
|
+
|
|
142
|
+
automake*)
|
|
143
|
+
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
144
|
+
# We have it, but it failed.
|
|
145
|
+
exit 1
|
|
146
|
+
fi
|
|
147
|
+
|
|
148
|
+
echo 1>&2 "\
|
|
149
|
+
WARNING: \`$1' is missing on your system. You should only need it if
|
|
150
|
+
you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
|
|
151
|
+
You might want to install the \`Automake' and \`Perl' packages.
|
|
152
|
+
Grab them from any GNU archive site."
|
|
153
|
+
find . -type f -name Makefile.am -print |
|
|
154
|
+
sed 's/\.am$/.in/' |
|
|
155
|
+
while read f; do touch "$f"; done
|
|
156
|
+
;;
|
|
157
|
+
|
|
158
|
+
autom4te)
|
|
159
|
+
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
160
|
+
# We have it, but it failed.
|
|
161
|
+
exit 1
|
|
162
|
+
fi
|
|
163
|
+
|
|
164
|
+
echo 1>&2 "\
|
|
165
|
+
WARNING: \`$1' is needed, and you do not seem to have it handy on your
|
|
166
|
+
system. You might have modified some files without having the
|
|
167
|
+
proper tools for further handling them.
|
|
168
|
+
You can get \`$1' as part of \`Autoconf' from any GNU
|
|
169
|
+
archive site."
|
|
170
|
+
|
|
171
|
+
file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
|
|
172
|
+
test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
|
|
173
|
+
if test -f "$file"; then
|
|
174
|
+
touch $file
|
|
175
|
+
else
|
|
176
|
+
test -z "$file" || exec >$file
|
|
177
|
+
echo "#! /bin/sh"
|
|
178
|
+
echo "# Created by GNU Automake missing as a replacement of"
|
|
179
|
+
echo "# $ $@"
|
|
180
|
+
echo "exit 0"
|
|
181
|
+
chmod +x $file
|
|
182
|
+
exit 1
|
|
183
|
+
fi
|
|
184
|
+
;;
|
|
185
|
+
|
|
186
|
+
bison|yacc)
|
|
187
|
+
echo 1>&2 "\
|
|
188
|
+
WARNING: \`$1' is missing on your system. You should only need it if
|
|
189
|
+
you modified a \`.y' file. You may need the \`Bison' package
|
|
190
|
+
in order for those modifications to take effect. You can get
|
|
191
|
+
\`Bison' from any GNU archive site."
|
|
192
|
+
rm -f y.tab.c y.tab.h
|
|
193
|
+
if [ $# -ne 1 ]; then
|
|
194
|
+
eval LASTARG="\${$#}"
|
|
195
|
+
case "$LASTARG" in
|
|
196
|
+
*.y)
|
|
197
|
+
SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
|
|
198
|
+
if [ -f "$SRCFILE" ]; then
|
|
199
|
+
cp "$SRCFILE" y.tab.c
|
|
200
|
+
fi
|
|
201
|
+
SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
|
|
202
|
+
if [ -f "$SRCFILE" ]; then
|
|
203
|
+
cp "$SRCFILE" y.tab.h
|
|
204
|
+
fi
|
|
205
|
+
;;
|
|
206
|
+
esac
|
|
207
|
+
fi
|
|
208
|
+
if [ ! -f y.tab.h ]; then
|
|
209
|
+
echo >y.tab.h
|
|
210
|
+
fi
|
|
211
|
+
if [ ! -f y.tab.c ]; then
|
|
212
|
+
echo 'main() { return 0; }' >y.tab.c
|
|
213
|
+
fi
|
|
214
|
+
;;
|
|
215
|
+
|
|
216
|
+
lex|flex)
|
|
217
|
+
echo 1>&2 "\
|
|
218
|
+
WARNING: \`$1' is missing on your system. You should only need it if
|
|
219
|
+
you modified a \`.l' file. You may need the \`Flex' package
|
|
220
|
+
in order for those modifications to take effect. You can get
|
|
221
|
+
\`Flex' from any GNU archive site."
|
|
222
|
+
rm -f lex.yy.c
|
|
223
|
+
if [ $# -ne 1 ]; then
|
|
224
|
+
eval LASTARG="\${$#}"
|
|
225
|
+
case "$LASTARG" in
|
|
226
|
+
*.l)
|
|
227
|
+
SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
|
|
228
|
+
if [ -f "$SRCFILE" ]; then
|
|
229
|
+
cp "$SRCFILE" lex.yy.c
|
|
230
|
+
fi
|
|
231
|
+
;;
|
|
232
|
+
esac
|
|
233
|
+
fi
|
|
234
|
+
if [ ! -f lex.yy.c ]; then
|
|
235
|
+
echo 'main() { return 0; }' >lex.yy.c
|
|
236
|
+
fi
|
|
237
|
+
;;
|
|
238
|
+
|
|
239
|
+
help2man)
|
|
240
|
+
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
|
241
|
+
# We have it, but it failed.
|
|
242
|
+
exit 1
|
|
243
|
+
fi
|
|
244
|
+
|
|
245
|
+
echo 1>&2 "\
|
|
246
|
+
WARNING: \`$1' is missing on your system. You should only need it if
|
|
247
|
+
you modified a dependency of a manual page. You may need the
|
|
248
|
+
\`Help2man' package in order for those modifications to take
|
|
249
|
+
effect. You can get \`Help2man' from any GNU archive site."
|
|
250
|
+
|
|
251
|
+
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
|
|
252
|
+
if test -z "$file"; then
|
|
253
|
+
file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
|
|
254
|
+
fi
|
|
255
|
+
if [ -f "$file" ]; then
|
|
256
|
+
touch $file
|
|
257
|
+
else
|
|
258
|
+
test -z "$file" || exec >$file
|
|
259
|
+
echo ".ab help2man is required to generate this page"
|
|
260
|
+
exit 1
|
|
261
|
+
fi
|
|
262
|
+
;;
|
|
263
|
+
|
|
264
|
+
makeinfo)
|
|
265
|
+
if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then
|
|
266
|
+
# We have makeinfo, but it failed.
|
|
267
|
+
exit 1
|
|
268
|
+
fi
|
|
269
|
+
|
|
270
|
+
echo 1>&2 "\
|
|
271
|
+
WARNING: \`$1' is missing on your system. You should only need it if
|
|
272
|
+
you modified a \`.texi' or \`.texinfo' file, or any other file
|
|
273
|
+
indirectly affecting the aspect of the manual. The spurious
|
|
274
|
+
call might also be the consequence of using a buggy \`make' (AIX,
|
|
275
|
+
DU, IRIX). You might want to install the \`Texinfo' package or
|
|
276
|
+
the \`GNU make' package. Grab either from any GNU archive site."
|
|
277
|
+
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
|
|
278
|
+
if test -z "$file"; then
|
|
279
|
+
file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
|
|
280
|
+
file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
|
|
281
|
+
fi
|
|
282
|
+
touch $file
|
|
283
|
+
;;
|
|
284
|
+
|
|
285
|
+
tar)
|
|
286
|
+
shift
|
|
287
|
+
if test -n "$run"; then
|
|
288
|
+
echo 1>&2 "ERROR: \`tar' requires --run"
|
|
289
|
+
exit 1
|
|
290
|
+
fi
|
|
291
|
+
|
|
292
|
+
# We have already tried tar in the generic part.
|
|
293
|
+
# Look for gnutar/gtar before invocation to avoid ugly error
|
|
294
|
+
# messages.
|
|
295
|
+
if (gnutar --version > /dev/null 2>&1); then
|
|
296
|
+
gnutar "$@" && exit 0
|
|
297
|
+
fi
|
|
298
|
+
if (gtar --version > /dev/null 2>&1); then
|
|
299
|
+
gtar "$@" && exit 0
|
|
300
|
+
fi
|
|
301
|
+
firstarg="$1"
|
|
302
|
+
if shift; then
|
|
303
|
+
case "$firstarg" in
|
|
304
|
+
*o*)
|
|
305
|
+
firstarg=`echo "$firstarg" | sed s/o//`
|
|
306
|
+
tar "$firstarg" "$@" && exit 0
|
|
307
|
+
;;
|
|
308
|
+
esac
|
|
309
|
+
case "$firstarg" in
|
|
310
|
+
*h*)
|
|
311
|
+
firstarg=`echo "$firstarg" | sed s/h//`
|
|
312
|
+
tar "$firstarg" "$@" && exit 0
|
|
313
|
+
;;
|
|
314
|
+
esac
|
|
315
|
+
fi
|
|
316
|
+
|
|
317
|
+
echo 1>&2 "\
|
|
318
|
+
WARNING: I can't seem to be able to run \`tar' with the given arguments.
|
|
319
|
+
You may want to install GNU tar or Free paxutils, or check the
|
|
320
|
+
command line arguments."
|
|
321
|
+
exit 1
|
|
322
|
+
;;
|
|
323
|
+
|
|
324
|
+
*)
|
|
325
|
+
echo 1>&2 "\
|
|
326
|
+
WARNING: \`$1' is needed, and you do not seem to have it handy on your
|
|
327
|
+
system. You might have modified some files without having the
|
|
328
|
+
proper tools for further handling them. Check the \`README' file,
|
|
329
|
+
it often tells you about the needed prerequisites for installing
|
|
330
|
+
this package. You may also peek at any GNU archive site, in case
|
|
331
|
+
some other package would contain this missing \`$1' program."
|
|
332
|
+
exit 1
|
|
333
|
+
;;
|
|
334
|
+
esac
|
|
335
|
+
|
|
336
|
+
exit 0
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
#! /bin/sh
|
|
2
|
+
# mkinstalldirs --- make directory hierarchy
|
|
3
|
+
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
|
|
4
|
+
# Created: 1993-05-16
|
|
5
|
+
# Public domain
|
|
6
|
+
|
|
7
|
+
errstatus=0
|
|
8
|
+
dirmode=""
|
|
9
|
+
|
|
10
|
+
usage="\
|
|
11
|
+
Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..."
|
|
12
|
+
|
|
13
|
+
# process command line arguments
|
|
14
|
+
while test $# -gt 0 ; do
|
|
15
|
+
case $1 in
|
|
16
|
+
-h | --help | --h*) # -h for help
|
|
17
|
+
echo "$usage" 1>&2
|
|
18
|
+
exit 0
|
|
19
|
+
;;
|
|
20
|
+
-m) # -m PERM arg
|
|
21
|
+
shift
|
|
22
|
+
test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
|
|
23
|
+
dirmode=$1
|
|
24
|
+
shift
|
|
25
|
+
;;
|
|
26
|
+
--) # stop option processing
|
|
27
|
+
shift
|
|
28
|
+
break
|
|
29
|
+
;;
|
|
30
|
+
-*) # unknown option
|
|
31
|
+
echo "$usage" 1>&2
|
|
32
|
+
exit 1
|
|
33
|
+
;;
|
|
34
|
+
*) # first non-opt arg
|
|
35
|
+
break
|
|
36
|
+
;;
|
|
37
|
+
esac
|
|
38
|
+
done
|
|
39
|
+
|
|
40
|
+
for file
|
|
41
|
+
do
|
|
42
|
+
if test -d "$file"; then
|
|
43
|
+
shift
|
|
44
|
+
else
|
|
45
|
+
break
|
|
46
|
+
fi
|
|
47
|
+
done
|
|
48
|
+
|
|
49
|
+
case $# in
|
|
50
|
+
0) exit 0 ;;
|
|
51
|
+
esac
|
|
52
|
+
|
|
53
|
+
case $dirmode in
|
|
54
|
+
'')
|
|
55
|
+
if mkdir -p -- . 2>/dev/null; then
|
|
56
|
+
echo "mkdir -p -- $*"
|
|
57
|
+
exec mkdir -p -- "$@"
|
|
58
|
+
fi
|
|
59
|
+
;;
|
|
60
|
+
*)
|
|
61
|
+
if mkdir -m "$dirmode" -p -- . 2>/dev/null; then
|
|
62
|
+
echo "mkdir -m $dirmode -p -- $*"
|
|
63
|
+
exec mkdir -m "$dirmode" -p -- "$@"
|
|
64
|
+
fi
|
|
65
|
+
;;
|
|
66
|
+
esac
|
|
67
|
+
|
|
68
|
+
for file
|
|
69
|
+
do
|
|
70
|
+
set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
|
|
71
|
+
shift
|
|
72
|
+
|
|
73
|
+
pathcomp=
|
|
74
|
+
for d
|
|
75
|
+
do
|
|
76
|
+
pathcomp="$pathcomp$d"
|
|
77
|
+
case $pathcomp in
|
|
78
|
+
-*) pathcomp=./$pathcomp ;;
|
|
79
|
+
esac
|
|
80
|
+
|
|
81
|
+
if test ! -d "$pathcomp"; then
|
|
82
|
+
echo "mkdir $pathcomp"
|
|
83
|
+
|
|
84
|
+
mkdir "$pathcomp" || lasterr=$?
|
|
85
|
+
|
|
86
|
+
if test ! -d "$pathcomp"; then
|
|
87
|
+
errstatus=$lasterr
|
|
88
|
+
else
|
|
89
|
+
if test ! -z "$dirmode"; then
|
|
90
|
+
echo "chmod $dirmode $pathcomp"
|
|
91
|
+
lasterr=""
|
|
92
|
+
chmod "$dirmode" "$pathcomp" || lasterr=$?
|
|
93
|
+
|
|
94
|
+
if test ! -z "$lasterr"; then
|
|
95
|
+
errstatus=$lasterr
|
|
96
|
+
fi
|
|
97
|
+
fi
|
|
98
|
+
fi
|
|
99
|
+
fi
|
|
100
|
+
|
|
101
|
+
pathcomp="$pathcomp/"
|
|
102
|
+
done
|
|
103
|
+
done
|
|
104
|
+
|
|
105
|
+
exit $errstatus
|
|
106
|
+
|
|
107
|
+
# Local Variables:
|
|
108
|
+
# mode: shell-script
|
|
109
|
+
# sh-indentation: 2
|
|
110
|
+
# End:
|
|
111
|
+
# mkinstalldirs ends here
|
|
@@ -0,0 +1,172 @@
|
|
|
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 "uv-common.h"
|
|
24
|
+
|
|
25
|
+
#include <assert.h>
|
|
26
|
+
#include <stddef.h> /* NULL */
|
|
27
|
+
#include <string.h> /* memset */
|
|
28
|
+
|
|
29
|
+
/* use inet_pton from c-ares if necessary */
|
|
30
|
+
#include "ares_config.h"
|
|
31
|
+
#include "ares/inet_net_pton.h"
|
|
32
|
+
#include "ares/inet_ntop.h"
|
|
33
|
+
|
|
34
|
+
/* list used for ares task handles */
|
|
35
|
+
static uv_ares_task_t* uv_ares_handles_ = NULL;
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
static uv_counters_t counters;
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
uv_counters_t* uv_counters() {
|
|
42
|
+
return &counters;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
const char* uv_err_name(uv_err_t err) {
|
|
47
|
+
switch (err.code) {
|
|
48
|
+
case UV_UNKNOWN: return "UNKNOWN";
|
|
49
|
+
case UV_OK: return "OK";
|
|
50
|
+
case UV_EOF: return "EOF";
|
|
51
|
+
case UV_EACCESS: return "EACCESS";
|
|
52
|
+
case UV_EAGAIN: return "EAGAIN";
|
|
53
|
+
case UV_EADDRINUSE: return "EADDRINUSE";
|
|
54
|
+
case UV_EADDRNOTAVAIL: return "EADDRNOTAVAIL";
|
|
55
|
+
case UV_EAFNOSUPPORT: return "EAFNOSUPPORT";
|
|
56
|
+
case UV_EALREADY: return "EALREADY";
|
|
57
|
+
case UV_EBADF: return "EBADF";
|
|
58
|
+
case UV_EBUSY: return "EBUSY";
|
|
59
|
+
case UV_ECONNABORTED: return "ECONNABORTED";
|
|
60
|
+
case UV_ECONNREFUSED: return "ECONNREFUSED";
|
|
61
|
+
case UV_ECONNRESET: return "ECONNRESET";
|
|
62
|
+
case UV_EDESTADDRREQ: return "EDESTADDRREQ";
|
|
63
|
+
case UV_EFAULT: return "EFAULT";
|
|
64
|
+
case UV_EHOSTUNREACH: return "EHOSTUNREACH";
|
|
65
|
+
case UV_EINTR: return "EINTR";
|
|
66
|
+
case UV_EINVAL: return "EINVAL";
|
|
67
|
+
case UV_EISCONN: return "EISCONN";
|
|
68
|
+
case UV_EMFILE: return "EMFILE";
|
|
69
|
+
case UV_ENETDOWN: return "ENETDOWN";
|
|
70
|
+
case UV_ENETUNREACH: return "ENETUNREACH";
|
|
71
|
+
case UV_ENFILE: return "ENFILE";
|
|
72
|
+
case UV_ENOBUFS: return "ENOBUFS";
|
|
73
|
+
case UV_ENOMEM: return "ENOMEM";
|
|
74
|
+
case UV_ENONET: return "ENONET";
|
|
75
|
+
case UV_ENOPROTOOPT: return "ENOPROTOOPT";
|
|
76
|
+
case UV_ENOTCONN: return "ENOTCONN";
|
|
77
|
+
case UV_ENOTSOCK: return "ENOTSOCK";
|
|
78
|
+
case UV_ENOTSUP: return "ENOTSUP";
|
|
79
|
+
case UV_EPROTO: return "EPROTO";
|
|
80
|
+
case UV_EPROTONOSUPPORT: return "EPROTONOSUPPORT";
|
|
81
|
+
case UV_EPROTOTYPE: return "EPROTOTYPE";
|
|
82
|
+
case UV_ETIMEDOUT: return "ETIMEDOUT";
|
|
83
|
+
default:
|
|
84
|
+
assert(0);
|
|
85
|
+
return NULL;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
struct sockaddr_in uv_ip4_addr(const char* ip, int port) {
|
|
91
|
+
struct sockaddr_in addr;
|
|
92
|
+
|
|
93
|
+
memset(&addr, 0, sizeof(struct sockaddr_in));
|
|
94
|
+
|
|
95
|
+
addr.sin_family = AF_INET;
|
|
96
|
+
addr.sin_port = htons(port);
|
|
97
|
+
addr.sin_addr.s_addr = inet_addr(ip);
|
|
98
|
+
|
|
99
|
+
return addr;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
struct sockaddr_in6 uv_ip6_addr(const char* ip, int port) {
|
|
104
|
+
struct sockaddr_in6 addr;
|
|
105
|
+
|
|
106
|
+
memset(&addr, 0, sizeof(struct sockaddr_in6));
|
|
107
|
+
|
|
108
|
+
addr.sin6_family = AF_INET6;
|
|
109
|
+
addr.sin6_port = htons(port);
|
|
110
|
+
ares_inet_pton(AF_INET6, ip, &addr.sin6_addr);
|
|
111
|
+
|
|
112
|
+
return addr;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
int uv_ip4_name(struct sockaddr_in* src, char* dst, size_t size) {
|
|
117
|
+
const char* d = ares_inet_ntop(AF_INET, &src->sin_addr, dst, size);
|
|
118
|
+
return d != dst;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
int uv_ip6_name(struct sockaddr_in6* src, char* dst, size_t size) {
|
|
123
|
+
const char* d = ares_inet_ntop(AF_INET6, &src->sin6_addr, dst, size);
|
|
124
|
+
return d != dst;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
/* find matching ares handle in list */
|
|
129
|
+
void uv_add_ares_handle(uv_ares_task_t* handle) {
|
|
130
|
+
handle->ares_next = uv_ares_handles_;
|
|
131
|
+
handle->ares_prev = NULL;
|
|
132
|
+
|
|
133
|
+
if (uv_ares_handles_) {
|
|
134
|
+
uv_ares_handles_->ares_prev = handle;
|
|
135
|
+
}
|
|
136
|
+
uv_ares_handles_ = handle;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
/* find matching ares handle in list */
|
|
140
|
+
/* TODO: faster lookup */
|
|
141
|
+
uv_ares_task_t* uv_find_ares_handle(ares_socket_t sock) {
|
|
142
|
+
uv_ares_task_t* handle = uv_ares_handles_;
|
|
143
|
+
while (handle != NULL) {
|
|
144
|
+
if (handle->sock == sock) {
|
|
145
|
+
break;
|
|
146
|
+
}
|
|
147
|
+
handle = handle->ares_next;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
return handle;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/* remove ares handle in list */
|
|
154
|
+
void uv_remove_ares_handle(uv_ares_task_t* handle) {
|
|
155
|
+
if (handle == uv_ares_handles_) {
|
|
156
|
+
uv_ares_handles_ = handle->ares_next;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
if (handle->ares_next) {
|
|
160
|
+
handle->ares_next->ares_prev = handle->ares_prev;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
if (handle->ares_prev) {
|
|
164
|
+
handle->ares_prev->ares_next = handle->ares_next;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
/* Returns 1 if the uv_ares_handles_ list is empty. 0 otherwise. */
|
|
170
|
+
int uv_ares_handles_empty() {
|
|
171
|
+
return uv_ares_handles_ ? 0 : 1;
|
|
172
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
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
|
+
/*
|
|
23
|
+
* This file is private to libuv. It provides common functionality to both
|
|
24
|
+
* Windows and Unix backends.
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
#ifndef UV_COMMON_H_
|
|
28
|
+
#define UV_COMMON_H_
|
|
29
|
+
|
|
30
|
+
#include "uv.h"
|
|
31
|
+
|
|
32
|
+
#define COUNTOF(a) (sizeof(a) / sizeof(a[0]))
|
|
33
|
+
|
|
34
|
+
/*
|
|
35
|
+
* Subclass of uv_handle_t. Used for integration of c-ares.
|
|
36
|
+
*/
|
|
37
|
+
typedef struct uv_ares_task_s uv_ares_task_t;
|
|
38
|
+
|
|
39
|
+
struct uv_ares_task_s {
|
|
40
|
+
UV_HANDLE_FIELDS
|
|
41
|
+
UV_ARES_TASK_PRIVATE_FIELDS
|
|
42
|
+
uv_ares_task_t* ares_prev;
|
|
43
|
+
uv_ares_task_t* ares_next;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
void uv_remove_ares_handle(uv_ares_task_t* handle);
|
|
48
|
+
uv_ares_task_t* uv_find_ares_handle(ares_socket_t sock);
|
|
49
|
+
void uv_add_ares_handle(uv_ares_task_t* handle);
|
|
50
|
+
int uv_ares_handles_empty();
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
#endif /* UV_COMMON_H_ */
|