-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule coroio
updated
32 files
+80 −0 | .github/workflows/c-cpp.yml | |
+15 −1 | CMakeLists.txt | |
+11 −1 | README.md | |
+30 −0 | coroio/all.hpp | |
+7 −2 | coroio/base.hpp | |
+2 −2 | coroio/corochain.hpp | |
+53 −5 | coroio/epoll.cpp | |
+13 −0 | coroio/epoll.hpp | |
+195 −0 | coroio/iocp.cpp | |
+101 −0 | coroio/iocp.hpp | |
+59 −4 | coroio/poll.cpp | |
+12 −0 | coroio/poll.hpp | |
+15 −3 | coroio/poller.hpp | |
+2 −2 | coroio/resolver.cpp | |
+27 −2 | coroio/select.cpp | |
+22 −0 | coroio/select.hpp | |
+99 −26 | coroio/socket.cpp | |
+310 −10 | coroio/socket.hpp | |
+0 −1 | coroio/ssl.hpp | |
+17 −1 | coroio/uring.cpp | |
+5 −146 | coroio/uring.hpp | |
+2,253 −0 | coroio/wepoll.c | |
+113 −0 | coroio/wepoll.h | |
+135 −0 | coroio/win32_pipe.cpp | |
+28 −6 | examples/bench.cpp | |
+21 −6 | examples/echoclient.cpp | |
+27 −7 | examples/echoserver.cpp | |
+1 −2 | examples/echotest.cpp | |
+18 −3 | examples/resolver.cpp | |
+14 −7 | examples/sslechoclient.cpp | |
+19 −7 | examples/sslechoserver.cpp | |
+160 −67 | tests/tests.cpp |