├── README.md ├── apr-util ├── Makefile └── patches │ └── 001-automake-compat.patch ├── apr ├── Makefile └── patches │ ├── 001-autoconf-compat.patch │ ├── 101-fix_apr_time_now.patch │ └── 201-upgrade-and-fix-1.5.1.patch ├── cyrus-sasl └── Makefile ├── expat └── Makefile ├── git ├── Makefile └── patches │ ├── 100-convert_builtin.patch │ └── 200-disable_fasthash.patch ├── hellorust ├── Makefile └── src │ └── hellorust.rs ├── libuv ├── Makefile ├── readme.txt └── src │ ├── CMakeLists.txt │ ├── include │ ├── android-ifaddrs.h │ ├── pthread-fixes.h │ ├── stdint-msvc2008.h │ ├── tree.h │ ├── uv-aix.h │ ├── uv-bsd.h │ ├── uv-darwin.h │ ├── uv-errno.h │ ├── uv-linux.h │ ├── uv-sunos.h │ ├── uv-threadpool.h │ ├── uv-unix.h │ ├── uv-version.h │ ├── uv-win.h │ └── uv.h │ └── src │ ├── fs-poll.c │ ├── heap-inl.h │ ├── inet.c │ ├── queue.h │ ├── threadpool.c │ ├── unix │ ├── aix.c │ ├── android-ifaddrs.c │ ├── async.c │ ├── atomic-ops.h │ ├── core.c │ ├── darwin-proctitle.c │ ├── darwin.c │ ├── dl.c │ ├── freebsd.c │ ├── fs.c │ ├── fsevents.c │ ├── getaddrinfo.c │ ├── getnameinfo.c │ ├── internal.h │ ├── kqueue.c │ ├── linux-core.c │ ├── linux-inotify.c │ ├── linux-syscalls.c │ ├── linux-syscalls.h │ ├── loop-watcher.c │ ├── loop.c │ ├── netbsd.c │ ├── openbsd.c │ ├── pipe.c │ ├── poll.c │ ├── process.c │ ├── proctitle.c │ ├── pthread-fixes.c │ ├── signal.c │ ├── spinlock.h │ ├── stream.c │ ├── sunos.c │ ├── tcp.c │ ├── thread.c │ ├── threadpool.c │ ├── timer.c │ ├── tty.c │ ├── udp.c │ └── uv-dtrace.d │ ├── uv-common.c │ ├── uv-common.h │ ├── version.c │ └── win │ ├── async.c │ ├── atomicops-inl.h │ ├── core.c │ ├── dl.c │ ├── error.c │ ├── fs-event.c │ ├── fs.c │ ├── getaddrinfo.c │ ├── getnameinfo.c │ ├── handle-inl.h │ ├── handle.c │ ├── internal.h │ ├── loop-watcher.c │ ├── pipe.c │ ├── poll.c │ ├── process-stdio.c │ ├── process.c │ ├── req-inl.h │ ├── req.c │ ├── signal.c │ ├── stream-inl.h │ ├── stream.c │ ├── tcp.c │ ├── thread.c │ ├── threadpool.c │ ├── timer.c │ ├── tty.c │ ├── udp.c │ ├── util.c │ ├── winapi.c │ ├── winapi.h │ ├── winsock.c │ └── winsock.h ├── luci-app-phddns ├── Makefile ├── lang │ └── phddns.zh-cn.po └── luasrc │ ├── Makefile │ ├── controller │ └── phddns.lua │ ├── model │ └── cbi │ │ └── admin_services │ │ ├── phddns.lua │ │ ├── subversion.lua │ │ └── vlmcsd.lua │ └── view │ └── admin_services │ └── phddns_stat.htm ├── luci └── patches │ ├── 001-change-default-conf.patch │ ├── 200-patch-ralink-wifi.patch │ └── 201-pack-mtk-wifidev.patch ├── mosquitto ├── 100-disable-memory-reporting.patch ├── 101-disable-docbook.patch ├── Makefile ├── README.md ├── files │ └── mosquitto.init └── patches │ └── 102-disable-srv.patch ├── neon ├── Makefile └── patches │ └── 001-automake-compat.patch ├── phddns ├── Makefile ├── files │ └── etc │ │ ├── config │ │ └── phddns │ │ └── init.d │ │ └── phddns └── patches │ └── 001-output_status.patch ├── rust ├── Makefile ├── README.md └── patches │ └── 001-append-mipsel-linux.patch ├── sqlite3 └── Makefile ├── subversion ├── Makefile ├── files │ └── etc │ │ ├── config │ │ └── subversion │ │ └── init.d │ │ └── subversion └── patches │ ├── 001-ac_macros.patch │ └── 002_change_configure.patch ├── tengine ├── Config.in ├── Makefile ├── files │ └── nginx.init └── patches │ ├── 001-fix-cross-compiler.patch │ └── 103-sys_nerr.patch ├── vlmcsd ├── Makefile ├── README.md ├── files │ └── etc │ │ ├── config │ │ └── vlmcsd │ │ ├── init.d │ │ └── vlmcsd │ │ └── vlmcsd.ini └── src │ ├── CMakeLists.txt │ ├── config.h │ ├── crypto.c │ ├── crypto.h │ ├── crypto_internal.c │ ├── crypto_internal.h │ ├── crypto_openssl.c │ ├── crypto_openssl.h │ ├── crypto_polarssl.h │ ├── endian.c │ ├── endian.h │ ├── helpers.c │ ├── helpers.h │ ├── kms.c │ ├── kms.h │ ├── nameser.h │ ├── nameser_compat.h │ ├── network.c │ ├── network.h │ ├── ns_name.c │ ├── ns_name.h │ ├── ns_parse.c │ ├── ns_parse.h │ ├── ntservice.c │ ├── ntservice.h │ ├── output.c │ ├── output.h │ ├── resolv.h │ ├── resolv_static.h │ ├── rpc.c │ ├── rpc.h │ ├── shared_globals.c │ ├── shared_globals.h │ ├── types.h │ ├── vlmcs.c │ ├── vlmcs.h │ ├── vlmcsd.c │ ├── vlmcsd.h │ └── vlmcsdmulti.c └── wsapi └── Makefile /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/README.md -------------------------------------------------------------------------------- /apr-util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/apr-util/Makefile -------------------------------------------------------------------------------- /apr-util/patches/001-automake-compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/apr-util/patches/001-automake-compat.patch -------------------------------------------------------------------------------- /apr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/apr/Makefile -------------------------------------------------------------------------------- /apr/patches/001-autoconf-compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/apr/patches/001-autoconf-compat.patch -------------------------------------------------------------------------------- /apr/patches/101-fix_apr_time_now.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/apr/patches/101-fix_apr_time_now.patch -------------------------------------------------------------------------------- /apr/patches/201-upgrade-and-fix-1.5.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/apr/patches/201-upgrade-and-fix-1.5.1.patch -------------------------------------------------------------------------------- /cyrus-sasl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/cyrus-sasl/Makefile -------------------------------------------------------------------------------- /expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/expat/Makefile -------------------------------------------------------------------------------- /git/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/git/Makefile -------------------------------------------------------------------------------- /git/patches/100-convert_builtin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/git/patches/100-convert_builtin.patch -------------------------------------------------------------------------------- /git/patches/200-disable_fasthash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/git/patches/200-disable_fasthash.patch -------------------------------------------------------------------------------- /hellorust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/hellorust/Makefile -------------------------------------------------------------------------------- /hellorust/src/hellorust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/hellorust/src/hellorust.rs -------------------------------------------------------------------------------- /libuv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/Makefile -------------------------------------------------------------------------------- /libuv/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/readme.txt -------------------------------------------------------------------------------- /libuv/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/CMakeLists.txt -------------------------------------------------------------------------------- /libuv/src/include/android-ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/android-ifaddrs.h -------------------------------------------------------------------------------- /libuv/src/include/pthread-fixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/pthread-fixes.h -------------------------------------------------------------------------------- /libuv/src/include/stdint-msvc2008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/stdint-msvc2008.h -------------------------------------------------------------------------------- /libuv/src/include/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/tree.h -------------------------------------------------------------------------------- /libuv/src/include/uv-aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv-aix.h -------------------------------------------------------------------------------- /libuv/src/include/uv-bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv-bsd.h -------------------------------------------------------------------------------- /libuv/src/include/uv-darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv-darwin.h -------------------------------------------------------------------------------- /libuv/src/include/uv-errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv-errno.h -------------------------------------------------------------------------------- /libuv/src/include/uv-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv-linux.h -------------------------------------------------------------------------------- /libuv/src/include/uv-sunos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv-sunos.h -------------------------------------------------------------------------------- /libuv/src/include/uv-threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv-threadpool.h -------------------------------------------------------------------------------- /libuv/src/include/uv-unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv-unix.h -------------------------------------------------------------------------------- /libuv/src/include/uv-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv-version.h -------------------------------------------------------------------------------- /libuv/src/include/uv-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv-win.h -------------------------------------------------------------------------------- /libuv/src/include/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/include/uv.h -------------------------------------------------------------------------------- /libuv/src/src/fs-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/fs-poll.c -------------------------------------------------------------------------------- /libuv/src/src/heap-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/heap-inl.h -------------------------------------------------------------------------------- /libuv/src/src/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/inet.c -------------------------------------------------------------------------------- /libuv/src/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/queue.h -------------------------------------------------------------------------------- /libuv/src/src/threadpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/threadpool.c -------------------------------------------------------------------------------- /libuv/src/src/unix/aix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/aix.c -------------------------------------------------------------------------------- /libuv/src/src/unix/android-ifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/android-ifaddrs.c -------------------------------------------------------------------------------- /libuv/src/src/unix/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/async.c -------------------------------------------------------------------------------- /libuv/src/src/unix/atomic-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/atomic-ops.h -------------------------------------------------------------------------------- /libuv/src/src/unix/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/core.c -------------------------------------------------------------------------------- /libuv/src/src/unix/darwin-proctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/darwin-proctitle.c -------------------------------------------------------------------------------- /libuv/src/src/unix/darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/darwin.c -------------------------------------------------------------------------------- /libuv/src/src/unix/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/dl.c -------------------------------------------------------------------------------- /libuv/src/src/unix/freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/freebsd.c -------------------------------------------------------------------------------- /libuv/src/src/unix/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/fs.c -------------------------------------------------------------------------------- /libuv/src/src/unix/fsevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/fsevents.c -------------------------------------------------------------------------------- /libuv/src/src/unix/getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/getaddrinfo.c -------------------------------------------------------------------------------- /libuv/src/src/unix/getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/getnameinfo.c -------------------------------------------------------------------------------- /libuv/src/src/unix/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/internal.h -------------------------------------------------------------------------------- /libuv/src/src/unix/kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/kqueue.c -------------------------------------------------------------------------------- /libuv/src/src/unix/linux-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/linux-core.c -------------------------------------------------------------------------------- /libuv/src/src/unix/linux-inotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/linux-inotify.c -------------------------------------------------------------------------------- /libuv/src/src/unix/linux-syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/linux-syscalls.c -------------------------------------------------------------------------------- /libuv/src/src/unix/linux-syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/linux-syscalls.h -------------------------------------------------------------------------------- /libuv/src/src/unix/loop-watcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/loop-watcher.c -------------------------------------------------------------------------------- /libuv/src/src/unix/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/loop.c -------------------------------------------------------------------------------- /libuv/src/src/unix/netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/netbsd.c -------------------------------------------------------------------------------- /libuv/src/src/unix/openbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/openbsd.c -------------------------------------------------------------------------------- /libuv/src/src/unix/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/pipe.c -------------------------------------------------------------------------------- /libuv/src/src/unix/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/poll.c -------------------------------------------------------------------------------- /libuv/src/src/unix/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/process.c -------------------------------------------------------------------------------- /libuv/src/src/unix/proctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/proctitle.c -------------------------------------------------------------------------------- /libuv/src/src/unix/pthread-fixes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/pthread-fixes.c -------------------------------------------------------------------------------- /libuv/src/src/unix/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/signal.c -------------------------------------------------------------------------------- /libuv/src/src/unix/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/spinlock.h -------------------------------------------------------------------------------- /libuv/src/src/unix/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/stream.c -------------------------------------------------------------------------------- /libuv/src/src/unix/sunos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/sunos.c -------------------------------------------------------------------------------- /libuv/src/src/unix/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/tcp.c -------------------------------------------------------------------------------- /libuv/src/src/unix/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/thread.c -------------------------------------------------------------------------------- /libuv/src/src/unix/threadpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/threadpool.c -------------------------------------------------------------------------------- /libuv/src/src/unix/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/timer.c -------------------------------------------------------------------------------- /libuv/src/src/unix/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/tty.c -------------------------------------------------------------------------------- /libuv/src/src/unix/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/udp.c -------------------------------------------------------------------------------- /libuv/src/src/unix/uv-dtrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/unix/uv-dtrace.d -------------------------------------------------------------------------------- /libuv/src/src/uv-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/uv-common.c -------------------------------------------------------------------------------- /libuv/src/src/uv-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/uv-common.h -------------------------------------------------------------------------------- /libuv/src/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/version.c -------------------------------------------------------------------------------- /libuv/src/src/win/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/async.c -------------------------------------------------------------------------------- /libuv/src/src/win/atomicops-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/atomicops-inl.h -------------------------------------------------------------------------------- /libuv/src/src/win/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/core.c -------------------------------------------------------------------------------- /libuv/src/src/win/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/dl.c -------------------------------------------------------------------------------- /libuv/src/src/win/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/error.c -------------------------------------------------------------------------------- /libuv/src/src/win/fs-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/fs-event.c -------------------------------------------------------------------------------- /libuv/src/src/win/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/fs.c -------------------------------------------------------------------------------- /libuv/src/src/win/getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/getaddrinfo.c -------------------------------------------------------------------------------- /libuv/src/src/win/getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/getnameinfo.c -------------------------------------------------------------------------------- /libuv/src/src/win/handle-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/handle-inl.h -------------------------------------------------------------------------------- /libuv/src/src/win/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/handle.c -------------------------------------------------------------------------------- /libuv/src/src/win/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/internal.h -------------------------------------------------------------------------------- /libuv/src/src/win/loop-watcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/loop-watcher.c -------------------------------------------------------------------------------- /libuv/src/src/win/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/pipe.c -------------------------------------------------------------------------------- /libuv/src/src/win/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/poll.c -------------------------------------------------------------------------------- /libuv/src/src/win/process-stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/process-stdio.c -------------------------------------------------------------------------------- /libuv/src/src/win/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/process.c -------------------------------------------------------------------------------- /libuv/src/src/win/req-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/req-inl.h -------------------------------------------------------------------------------- /libuv/src/src/win/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/req.c -------------------------------------------------------------------------------- /libuv/src/src/win/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/signal.c -------------------------------------------------------------------------------- /libuv/src/src/win/stream-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/stream-inl.h -------------------------------------------------------------------------------- /libuv/src/src/win/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/stream.c -------------------------------------------------------------------------------- /libuv/src/src/win/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/tcp.c -------------------------------------------------------------------------------- /libuv/src/src/win/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/thread.c -------------------------------------------------------------------------------- /libuv/src/src/win/threadpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/threadpool.c -------------------------------------------------------------------------------- /libuv/src/src/win/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/timer.c -------------------------------------------------------------------------------- /libuv/src/src/win/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/tty.c -------------------------------------------------------------------------------- /libuv/src/src/win/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/udp.c -------------------------------------------------------------------------------- /libuv/src/src/win/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/util.c -------------------------------------------------------------------------------- /libuv/src/src/win/winapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/winapi.c -------------------------------------------------------------------------------- /libuv/src/src/win/winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/winapi.h -------------------------------------------------------------------------------- /libuv/src/src/win/winsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/winsock.c -------------------------------------------------------------------------------- /libuv/src/src/win/winsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/libuv/src/src/win/winsock.h -------------------------------------------------------------------------------- /luci-app-phddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci-app-phddns/Makefile -------------------------------------------------------------------------------- /luci-app-phddns/lang/phddns.zh-cn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci-app-phddns/lang/phddns.zh-cn.po -------------------------------------------------------------------------------- /luci-app-phddns/luasrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci-app-phddns/luasrc/Makefile -------------------------------------------------------------------------------- /luci-app-phddns/luasrc/controller/phddns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci-app-phddns/luasrc/controller/phddns.lua -------------------------------------------------------------------------------- /luci-app-phddns/luasrc/model/cbi/admin_services/phddns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci-app-phddns/luasrc/model/cbi/admin_services/phddns.lua -------------------------------------------------------------------------------- /luci-app-phddns/luasrc/model/cbi/admin_services/subversion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci-app-phddns/luasrc/model/cbi/admin_services/subversion.lua -------------------------------------------------------------------------------- /luci-app-phddns/luasrc/model/cbi/admin_services/vlmcsd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci-app-phddns/luasrc/model/cbi/admin_services/vlmcsd.lua -------------------------------------------------------------------------------- /luci-app-phddns/luasrc/view/admin_services/phddns_stat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci-app-phddns/luasrc/view/admin_services/phddns_stat.htm -------------------------------------------------------------------------------- /luci/patches/001-change-default-conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci/patches/001-change-default-conf.patch -------------------------------------------------------------------------------- /luci/patches/200-patch-ralink-wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci/patches/200-patch-ralink-wifi.patch -------------------------------------------------------------------------------- /luci/patches/201-pack-mtk-wifidev.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/luci/patches/201-pack-mtk-wifidev.patch -------------------------------------------------------------------------------- /mosquitto/100-disable-memory-reporting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/mosquitto/100-disable-memory-reporting.patch -------------------------------------------------------------------------------- /mosquitto/101-disable-docbook.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/mosquitto/101-disable-docbook.patch -------------------------------------------------------------------------------- /mosquitto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/mosquitto/Makefile -------------------------------------------------------------------------------- /mosquitto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/mosquitto/README.md -------------------------------------------------------------------------------- /mosquitto/files/mosquitto.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/mosquitto/files/mosquitto.init -------------------------------------------------------------------------------- /mosquitto/patches/102-disable-srv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/mosquitto/patches/102-disable-srv.patch -------------------------------------------------------------------------------- /neon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/neon/Makefile -------------------------------------------------------------------------------- /neon/patches/001-automake-compat.patch: -------------------------------------------------------------------------------- 1 | --- /dev/null 2 | +++ b/Makefile.am 3 | @@ -0,0 +1,2 @@ 4 | +SUBDIRS = . 5 | +ACLOCAL_AMFLAGS = -I macros 6 | -------------------------------------------------------------------------------- /phddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/phddns/Makefile -------------------------------------------------------------------------------- /phddns/files/etc/config/phddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/phddns/files/etc/config/phddns -------------------------------------------------------------------------------- /phddns/files/etc/init.d/phddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/phddns/files/etc/init.d/phddns -------------------------------------------------------------------------------- /phddns/patches/001-output_status.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/phddns/patches/001-output_status.patch -------------------------------------------------------------------------------- /rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/rust/Makefile -------------------------------------------------------------------------------- /rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/rust/README.md -------------------------------------------------------------------------------- /rust/patches/001-append-mipsel-linux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/rust/patches/001-append-mipsel-linux.patch -------------------------------------------------------------------------------- /sqlite3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/sqlite3/Makefile -------------------------------------------------------------------------------- /subversion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/subversion/Makefile -------------------------------------------------------------------------------- /subversion/files/etc/config/subversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/subversion/files/etc/config/subversion -------------------------------------------------------------------------------- /subversion/files/etc/init.d/subversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/subversion/files/etc/init.d/subversion -------------------------------------------------------------------------------- /subversion/patches/001-ac_macros.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/subversion/patches/001-ac_macros.patch -------------------------------------------------------------------------------- /subversion/patches/002_change_configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/subversion/patches/002_change_configure.patch -------------------------------------------------------------------------------- /tengine/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/tengine/Config.in -------------------------------------------------------------------------------- /tengine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/tengine/Makefile -------------------------------------------------------------------------------- /tengine/files/nginx.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/tengine/files/nginx.init -------------------------------------------------------------------------------- /tengine/patches/001-fix-cross-compiler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/tengine/patches/001-fix-cross-compiler.patch -------------------------------------------------------------------------------- /tengine/patches/103-sys_nerr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/tengine/patches/103-sys_nerr.patch -------------------------------------------------------------------------------- /vlmcsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/Makefile -------------------------------------------------------------------------------- /vlmcsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/README.md -------------------------------------------------------------------------------- /vlmcsd/files/etc/config/vlmcsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/files/etc/config/vlmcsd -------------------------------------------------------------------------------- /vlmcsd/files/etc/init.d/vlmcsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/files/etc/init.d/vlmcsd -------------------------------------------------------------------------------- /vlmcsd/files/etc/vlmcsd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/files/etc/vlmcsd.ini -------------------------------------------------------------------------------- /vlmcsd/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/CMakeLists.txt -------------------------------------------------------------------------------- /vlmcsd/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/config.h -------------------------------------------------------------------------------- /vlmcsd/src/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/crypto.c -------------------------------------------------------------------------------- /vlmcsd/src/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/crypto.h -------------------------------------------------------------------------------- /vlmcsd/src/crypto_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/crypto_internal.c -------------------------------------------------------------------------------- /vlmcsd/src/crypto_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/crypto_internal.h -------------------------------------------------------------------------------- /vlmcsd/src/crypto_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/crypto_openssl.c -------------------------------------------------------------------------------- /vlmcsd/src/crypto_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/crypto_openssl.h -------------------------------------------------------------------------------- /vlmcsd/src/crypto_polarssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/crypto_polarssl.h -------------------------------------------------------------------------------- /vlmcsd/src/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/endian.c -------------------------------------------------------------------------------- /vlmcsd/src/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/endian.h -------------------------------------------------------------------------------- /vlmcsd/src/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/helpers.c -------------------------------------------------------------------------------- /vlmcsd/src/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/helpers.h -------------------------------------------------------------------------------- /vlmcsd/src/kms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/kms.c -------------------------------------------------------------------------------- /vlmcsd/src/kms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/kms.h -------------------------------------------------------------------------------- /vlmcsd/src/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/nameser.h -------------------------------------------------------------------------------- /vlmcsd/src/nameser_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/nameser_compat.h -------------------------------------------------------------------------------- /vlmcsd/src/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/network.c -------------------------------------------------------------------------------- /vlmcsd/src/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/network.h -------------------------------------------------------------------------------- /vlmcsd/src/ns_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/ns_name.c -------------------------------------------------------------------------------- /vlmcsd/src/ns_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/ns_name.h -------------------------------------------------------------------------------- /vlmcsd/src/ns_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/ns_parse.c -------------------------------------------------------------------------------- /vlmcsd/src/ns_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/ns_parse.h -------------------------------------------------------------------------------- /vlmcsd/src/ntservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/ntservice.c -------------------------------------------------------------------------------- /vlmcsd/src/ntservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/ntservice.h -------------------------------------------------------------------------------- /vlmcsd/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/output.c -------------------------------------------------------------------------------- /vlmcsd/src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/output.h -------------------------------------------------------------------------------- /vlmcsd/src/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/resolv.h -------------------------------------------------------------------------------- /vlmcsd/src/resolv_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/resolv_static.h -------------------------------------------------------------------------------- /vlmcsd/src/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/rpc.c -------------------------------------------------------------------------------- /vlmcsd/src/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/rpc.h -------------------------------------------------------------------------------- /vlmcsd/src/shared_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/shared_globals.c -------------------------------------------------------------------------------- /vlmcsd/src/shared_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/shared_globals.h -------------------------------------------------------------------------------- /vlmcsd/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/types.h -------------------------------------------------------------------------------- /vlmcsd/src/vlmcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/vlmcs.c -------------------------------------------------------------------------------- /vlmcsd/src/vlmcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/vlmcs.h -------------------------------------------------------------------------------- /vlmcsd/src/vlmcsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/vlmcsd.c -------------------------------------------------------------------------------- /vlmcsd/src/vlmcsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/vlmcsd.h -------------------------------------------------------------------------------- /vlmcsd/src/vlmcsdmulti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/vlmcsd/src/vlmcsdmulti.c -------------------------------------------------------------------------------- /wsapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bywayboy/openwrt-packages/HEAD/wsapi/Makefile --------------------------------------------------------------------------------