Skip to content

Commit

Permalink
Update c-ares submodule to 1.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Dec 10, 2022
1 parent b516583 commit 22a37d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deps/c-ares
Submodule c-ares updated 46 files
+114 −0 .cirrus.yml
+3 −3 .travis.yml
+14 −5 CMakeLists.txt
+1 −1 Makefile.m32
+2 −2 Makefile.msvc
+1 −1 README.md
+72 −70 RELEASE-NOTES
+39 −0 ci/build.sh
+0 −0 ci/covupload.sh
+8 −1 ci/distcheck.sh
+0 −0 ci/test.sh
+7 −2 configure.ac
+1 −1 docs/ares_free_data.3
+3 −1 docs/ares_getaddrinfo.3
+2 −1 include/ares.h
+3 −3 include/ares_version.h
+3 −1 src/lib/Makefile.inc
+266 −0 src/lib/ares__addrinfo2hostent.c
+240 −0 src/lib/ares__addrinfo_localhost.c
+42 −78 src/lib/ares__parse_into_addrinfo.c
+30 −43 src/lib/ares__readaddrinfo.c
+12 −4 src/lib/ares__sortaddrinfo.c
+1 −0 src/lib/ares_freeaddrinfo.c
+69 −60 src/lib/ares_getaddrinfo.c
+130 −326 src/lib/ares_gethostbyname.c
+23 −142 src/lib/ares_parse_a_reply.c
+22 −142 src/lib/ares_parse_aaaa_reply.c
+1 −1 src/lib/ares_parse_uri_reply.c
+19 −5 src/lib/ares_private.h
+12 −19 src/lib/ares_strdup.c
+1 −1 test/CMakeLists.txt
+5 −5 test/Makefile.am
+2 −2 test/Makefile.m32
+3 −3 test/Makefile.msvc
+3 −3 test/ares-test-live.cc
+15 −19 test/ares-test-mock-ai.cc
+36 −10 test/ares-test-mock.cc
+79 −46 test/ares-test.cc
+3 −1 test/ares-test.h
+9 −0 test/gmock-1.11.0/README.md
+4,355 −2,157 test/gmock-1.11.0/gmock-gtest-all.cc
+11,647 −0 test/gmock-1.11.0/gmock/gmock.h
+12,377 −0 test/gmock-1.11.0/gtest/gtest.h
+0 −14,978 test/gmock-1.8.0/gmock/gmock.h
+0 −21,192 test/gmock-1.8.0/gtest/gtest.h
+0 −30 travis/build.sh
2 changes: 2 additions & 0 deletions setup_cares.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
use_system_lib = bool(int(os.environ.get('PYCARES_USE_SYSTEM_LIB', 0)))

cares_sources = [
'deps/c-ares/src/lib/ares__addrinfo2hostent.c',
'deps/c-ares/src/lib/ares__addrinfo_localhost.c',
'deps/c-ares/src/lib/ares__close_sockets.c',
'deps/c-ares/src/lib/ares__get_hostent.c',
'deps/c-ares/src/lib/ares__parse_into_addrinfo.c',
Expand Down

0 comments on commit 22a37d7

Please sign in to comment.