-
Notifications
You must be signed in to change notification settings - Fork 17
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 aws-c-io
updated
28 files
+25 −8 | CMakeLists.txt | |
+1 −0 | README.md | |
+78 −21 | include/aws/io/event_loop.h | |
+37 −11 | include/aws/io/io.h | |
+52 −0 | include/aws/io/private/dispatch_queue.h | |
+26 −12 | include/aws/io/private/pki_utils.h | |
+20 −0 | include/aws/io/private/socket.h | |
+59 −1 | include/aws/io/socket.h | |
+47 −9 | include/aws/io/tls_channel_handler.h | |
+3 −2 | source/bsd/kqueue_event_loop.c | |
+33 −15 | source/channel_bootstrap.c | |
+529 −4 | source/darwin/darwin_pki_utils.c | |
+438 −0 | source/darwin/dispatch_queue_event_loop.c | |
+1,404 −0 | source/darwin/nw_socket.c | |
+47 −28 | source/darwin/secure_transport_tls_channel_handler.c | |
+122 −14 | source/event_loop.c | |
+44 −0 | source/io.c | |
+3 −2 | source/linux/epoll_event_loop.c | |
+76 −23 | source/posix/socket.c | |
+199 −0 | source/socket.c | |
+67 −27 | source/tls_channel_handler.c | |
+3 −2 | source/windows/iocp/iocp_event_loop.c | |
+2 −2 | source/windows/iocp/pipe.c | |
+15 −1 | source/windows/iocp/socket.c | |
+4 −2 | tests/CMakeLists.txt | |
+197 −156 | tests/event_loop_test.c | |
+818 −735 | tests/socket_test.c | |
+1 −0 | tests/tls_handler_test.c |