Skip to content
This repository has been archived by the owner on Aug 18, 2021. It is now read-only.

Commit

Permalink
submodule: updated submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
darsvador committed Jun 7, 2020
1 parent 4fc32c7 commit 2c1088e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/shadowsocksr-uvw
Submodule shadowsocksr-uvw updated 75 files
+29 −0 .github/workflows/build-shadowsocksr-uvw.yml
+3 −2 CMakeLists.txt
+27 −25 cmake/souium.cmake
+1 −1 libuv
+1 −1 src/Buffer.cpp
+39 −3 src/CMakeLists.txt
+1 −1 src/ConnectionContext.cpp
+55 −0 src/NetUtils.cpp
+14 −0 src/NetUtils.hpp
+3 −0 src/SSRThread.cpp
+2 −0 src/SSRThread.hpp
+4 −1 src/UDPConnectionContext.hpp
+10 −3 src/UDPRelay.cpp
+4 −3 src/UDPRelay.hpp
+24 −19 src/local_uv.cpp
+1 −0 src/shadowsocksr.h
+13 −6 src/ssr_local.cpp
+27 −0 src/uvw/async.cpp
+66 −0 src/uvw/async.h
+32 −0 src/uvw/check.cpp
+63 −0 src/uvw/check.h
+12 −0 src/uvw/config.h
+146 −0 src/uvw/dns.cpp
+267 −0 src/uvw/dns.h
+37 −0 src/uvw/emitter.cpp
+324 −0 src/uvw/emitter.h
+594 −0 src/uvw/fs.cpp
+1,462 −0 src/uvw/fs.h
+54 −0 src/uvw/fs_event.cpp
+149 −0 src/uvw/fs_event.h
+49 −0 src/uvw/fs_poll.cpp
+83 −0 src/uvw/fs_poll.h
+277 −0 src/uvw/handle.hpp
+32 −0 src/uvw/idle.cpp
+71 −0 src/uvw/idle.h
+35 −0 src/uvw/lib.cpp
+70 −0 src/uvw/lib.h
+151 −0 src/uvw/loop.cpp
+440 −0 src/uvw/loop.h
+76 −0 src/uvw/pipe.cpp
+167 −0 src/uvw/pipe.h
+59 −0 src/uvw/poll.cpp
+145 −0 src/uvw/poll.h
+32 −0 src/uvw/prepare.cpp
+65 −0 src/uvw/prepare.h
+132 −0 src/uvw/process.cpp
+254 −0 src/uvw/process.h
+75 −0 src/uvw/request.hpp
+73 −0 src/uvw/resource.hpp
+47 −0 src/uvw/signal.cpp
+89 −0 src/uvw/signal.h
+21 −0 src/uvw/stream.cpp
+450 −0 src/uvw/stream.h
+125 −0 src/uvw/tcp.cpp
+273 −0 src/uvw/tcp.h
+220 −0 src/uvw/thread.cpp
+368 −0 src/uvw/thread.h
+47 −0 src/uvw/timer.cpp
+107 −0 src/uvw/timer.h
+80 −0 src/uvw/tty.cpp
+155 −0 src/uvw/tty.h
+326 −0 src/uvw/udp.cpp
+658 −0 src/uvw/udp.h
+119 −0 src/uvw/underlying_type.hpp
+346 −0 src/uvw/util.cpp
+831 −0 src/uvw/util.h
+29 −0 src/uvw/work.cpp
+68 −0 src/uvw/work.h
+27 −8,752 src/uvw_single.hpp
+562 −0 src/win/getopt.c
+105 −0 src/win/getopt.h
+4 −1 test/CMakeLists.txt
+2 −1 test/src/TestBuffer.cpp
+80 −0 test/src/TestDualStack.cpp
+131 −0 test/src/TestNetUtils.cpp

0 comments on commit 2c1088e

Please sign in to comment.