grpc 1.6.7 → 1.7.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +579 -77
- data/include/grpc/byte_buffer.h +1 -63
- data/include/grpc/compression.h +27 -5
- data/include/grpc/fork.h +24 -0
- data/include/grpc/grpc.h +12 -6
- data/include/grpc/grpc_security.h +28 -7
- data/include/grpc/impl/codegen/atm.h +1 -0
- data/include/grpc/impl/codegen/byte_buffer.h +86 -0
- data/include/grpc/impl/codegen/compression_types.h +63 -5
- data/include/grpc/impl/codegen/fork.h +48 -0
- data/include/grpc/impl/codegen/grpc_types.h +26 -9
- data/include/grpc/impl/codegen/port_platform.h +11 -4
- data/include/grpc/impl/codegen/slice.h +6 -1
- data/include/grpc/impl/codegen/sync.h +3 -1
- data/include/grpc/impl/codegen/sync_custom.h +36 -0
- data/include/grpc/module.modulemap +75 -3
- data/include/grpc/slice.h +1 -5
- data/include/grpc/support/sync_custom.h +24 -0
- data/src/core/ext/census/base_resources.c +14 -14
- data/src/core/ext/census/context.c +7 -5
- data/src/core/ext/census/grpc_filter.c +12 -14
- data/src/core/ext/census/mlog.c +2 -1
- data/src/core/ext/census/resource.c +13 -9
- data/src/core/ext/filters/client_channel/channel_connectivity.c +15 -8
- data/src/core/ext/filters/client_channel/client_channel.c +418 -439
- data/src/core/ext/filters/client_channel/client_channel_factory.c +4 -5
- data/src/core/ext/filters/client_channel/client_channel_plugin.c +2 -2
- data/src/core/ext/filters/client_channel/http_connect_handshaker.c +7 -5
- data/src/core/ext/filters/client_channel/http_proxy.c +17 -21
- data/src/core/ext/filters/client_channel/lb_policy.c +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.c +7 -7
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c +371 -257
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.c +7 -5
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.c +25 -14
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.c +16 -16
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.c +33 -28
- data/src/core/ext/filters/client_channel/lb_policy_factory.c +10 -8
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +1 -1
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.c +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.c +7 -6
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.c +62 -28
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.c +29 -23
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.c +25 -14
- data/src/core/ext/filters/client_channel/retry_throttle.c +9 -6
- data/src/core/ext/filters/client_channel/subchannel.c +30 -30
- data/src/core/ext/filters/client_channel/subchannel.h +1 -4
- data/src/core/ext/filters/client_channel/subchannel_index.c +31 -15
- data/src/core/ext/filters/client_channel/subchannel_index.h +7 -0
- data/src/core/ext/filters/client_channel/uri_parser.c +4 -3
- data/src/core/ext/filters/deadline/deadline_filter.c +78 -39
- data/src/core/ext/filters/deadline/deadline_filter.h +7 -1
- data/src/core/ext/filters/http/client/http_client_filter.c +14 -14
- data/src/core/ext/filters/http/http_filters_plugin.c +1 -1
- data/src/core/ext/filters/http/message_compress/message_compress_filter.c +240 -175
- data/src/core/ext/filters/http/server/http_server_filter.c +48 -36
- data/src/core/ext/filters/load_reporting/{load_reporting_filter.c → server_load_reporting_filter.c} +11 -12
- data/src/core/ext/filters/load_reporting/{load_reporting_filter.h → server_load_reporting_filter.h} +6 -5
- data/src/core/ext/filters/load_reporting/{load_reporting.c → server_load_reporting_plugin.c} +19 -13
- data/src/core/ext/filters/load_reporting/{load_reporting.h → server_load_reporting_plugin.h} +4 -3
- data/src/core/ext/filters/max_age/max_age_filter.c +2 -3
- data/src/core/ext/filters/message_size/message_size_filter.c +4 -2
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.c +0 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.c +5 -5
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.c +1 -1
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c +1 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.c +20 -18
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.c +1 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.c +493 -210
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.c +9 -8
- data/src/core/ext/transport/chttp2/transport/frame_data.c +2 -2
- data/src/core/ext/transport/chttp2/transport/frame_goaway.c +2 -2
- data/src/core/ext/transport/chttp2/transport/frame_ping.c +5 -4
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.c +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_settings.c +10 -9
- data/src/core/ext/transport/chttp2/transport/frame_window_update.c +9 -5
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.c +62 -41
- data/src/core/ext/transport/chttp2/transport/hpack_parser.c +52 -8
- data/src/core/ext/transport/chttp2/transport/hpack_table.c +2 -2
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.c +3 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +60 -30
- data/src/core/ext/transport/chttp2/transport/parsing.c +16 -5
- data/src/core/ext/transport/chttp2/transport/stream_lists.c +36 -16
- data/src/core/ext/transport/chttp2/transport/stream_map.c +6 -4
- data/src/core/ext/transport/chttp2/transport/writing.c +133 -105
- data/src/core/ext/transport/inproc/inproc_transport.c +61 -65
- data/src/core/lib/channel/channel_args.c +112 -12
- data/src/core/lib/channel/channel_args.h +31 -0
- data/src/core/lib/channel/channel_stack.c +1 -15
- data/src/core/lib/channel/channel_stack.h +3 -10
- data/src/core/lib/channel/channel_stack_builder.c +41 -10
- data/src/core/lib/channel/channel_stack_builder.h +10 -0
- data/src/core/lib/channel/connected_channel.c +94 -23
- data/src/core/lib/channel/handshaker.c +8 -6
- data/src/core/lib/channel/handshaker_registry.c +1 -1
- data/src/core/lib/compression/algorithm_metadata.h +14 -0
- data/src/core/lib/compression/compression.c +101 -1
- data/src/core/lib/compression/stream_compression.c +32 -146
- data/src/core/lib/compression/stream_compression.h +28 -4
- data/src/core/lib/compression/stream_compression_gzip.c +228 -0
- data/src/core/lib/{iomgr/ev_epoll_thread_pool_linux.h → compression/stream_compression_gzip.h} +5 -7
- data/src/core/lib/compression/stream_compression_identity.c +94 -0
- data/src/core/lib/{iomgr/ev_epoll_limited_pollers_linux.h → compression/stream_compression_identity.h} +7 -8
- data/src/core/lib/debug/stats.c +174 -0
- data/src/core/lib/debug/stats.h +61 -0
- data/src/core/lib/debug/stats_data.c +687 -0
- data/src/core/lib/debug/stats_data.h +470 -0
- data/src/core/lib/debug/trace.c +3 -3
- data/src/core/lib/debug/trace.h +1 -1
- data/src/core/lib/http/format_request.c +1 -1
- data/src/core/lib/http/httpcli.c +8 -7
- data/src/core/lib/http/httpcli_security_connector.c +2 -1
- data/src/core/lib/http/parser.c +4 -3
- data/src/core/lib/iomgr/call_combiner.c +202 -0
- data/src/core/lib/iomgr/call_combiner.h +121 -0
- data/src/core/lib/iomgr/closure.c +18 -4
- data/src/core/lib/iomgr/combiner.c +11 -4
- data/src/core/lib/iomgr/error.c +26 -24
- data/src/core/lib/iomgr/ev_epoll1_linux.c +395 -212
- data/src/core/lib/iomgr/ev_epollex_linux.c +141 -128
- data/src/core/lib/iomgr/ev_epollsig_linux.c +44 -41
- data/src/core/lib/iomgr/ev_poll_posix.c +99 -75
- data/src/core/lib/iomgr/ev_posix.c +5 -9
- data/src/core/lib/iomgr/ev_posix.h +1 -1
- data/src/core/lib/iomgr/exec_ctx.h +6 -1
- data/src/core/lib/iomgr/executor.c +142 -36
- data/src/core/lib/iomgr/executor.h +6 -1
- data/src/core/lib/iomgr/fork_posix.c +88 -0
- data/src/core/lib/iomgr/fork_windows.c +39 -0
- data/src/core/lib/iomgr/iocp_windows.c +2 -0
- data/src/core/lib/iomgr/iomgr.c +2 -8
- data/src/core/lib/iomgr/is_epollexclusive_available.c +6 -6
- data/src/core/lib/iomgr/load_file.c +2 -1
- data/src/core/lib/iomgr/polling_entity.c +9 -9
- data/src/core/lib/iomgr/polling_entity.h +7 -1
- data/src/core/lib/iomgr/pollset.h +1 -1
- data/src/core/lib/iomgr/pollset_uv.c +1 -1
- data/src/core/lib/iomgr/pollset_windows.c +3 -3
- data/src/core/lib/iomgr/port.h +4 -0
- data/src/core/lib/iomgr/resolve_address_posix.c +8 -7
- data/src/core/lib/iomgr/resolve_address_windows.c +1 -1
- data/src/core/lib/iomgr/resource_quota.c +24 -19
- data/src/core/lib/iomgr/socket_factory_posix.c +4 -4
- data/src/core/lib/iomgr/socket_mutator.c +4 -4
- data/src/core/lib/iomgr/socket_utils_windows.c +0 -4
- data/src/core/lib/iomgr/tcp_client_posix.c +5 -4
- data/src/core/lib/iomgr/tcp_posix.c +181 -20
- data/src/core/lib/iomgr/tcp_server_posix.c +8 -7
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.c +1 -1
- data/src/core/lib/iomgr/timer.h +4 -0
- data/src/core/lib/iomgr/timer_generic.c +138 -3
- data/src/core/lib/iomgr/timer_generic.h +3 -0
- data/src/core/lib/iomgr/timer_heap.c +4 -4
- data/src/core/lib/iomgr/timer_manager.c +2 -2
- data/src/core/lib/iomgr/timer_uv.c +2 -0
- data/src/core/lib/iomgr/udp_server.c +10 -8
- data/src/core/lib/iomgr/unix_sockets_posix.c +4 -2
- data/src/core/lib/iomgr/wakeup_fd_cv.c +9 -8
- data/src/core/lib/iomgr/wakeup_fd_cv.h +2 -2
- data/src/core/lib/json/json.c +1 -1
- data/src/core/lib/json/json_string.c +13 -13
- data/src/core/lib/profiling/timers.h +18 -8
- data/src/core/lib/security/credentials/composite/composite_credentials.c +4 -10
- data/src/core/lib/security/credentials/google_default/google_default_credentials.c +2 -1
- data/src/core/lib/security/credentials/jwt/jwt_verifier.c +11 -6
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.c +4 -4
- data/src/core/lib/security/credentials/plugin/plugin_credentials.c +132 -50
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
- data/src/core/lib/security/transport/client_auth_filter.c +68 -135
- data/src/core/lib/security/transport/secure_endpoint.c +110 -90
- data/src/core/lib/security/transport/secure_endpoint.h +8 -3
- data/src/core/lib/security/transport/security_connector.c +10 -12
- data/src/core/lib/security/transport/security_handshaker.c +45 -24
- data/src/core/lib/security/transport/server_auth_filter.c +71 -20
- data/src/core/lib/slice/b64.c +2 -2
- data/src/core/lib/slice/slice.c +16 -14
- data/src/core/lib/slice/slice_buffer.c +5 -4
- data/src/core/lib/slice/slice_hash_table.c +3 -2
- data/src/core/lib/slice/slice_intern.c +8 -5
- data/src/core/lib/support/block_annotate.h +22 -0
- data/src/core/lib/support/fork.c +62 -0
- data/src/core/lib/support/fork.h +35 -0
- data/src/core/lib/support/log_linux.c +1 -1
- data/src/core/lib/support/string.c +15 -1
- data/src/core/lib/support/string.h +3 -0
- data/src/core/lib/support/thd_internal.h +6 -0
- data/src/core/lib/support/thd_posix.c +56 -0
- data/src/core/lib/support/thd_windows.c +2 -0
- data/src/core/lib/surface/alarm.c +22 -15
- data/src/core/lib/surface/byte_buffer.c +4 -2
- data/src/core/lib/surface/call.c +442 -141
- data/src/core/lib/surface/call.h +6 -6
- data/src/core/lib/surface/call_log_batch.c +1 -1
- data/src/core/lib/surface/call_test_only.h +12 -0
- data/src/core/lib/surface/channel.c +39 -4
- data/src/core/lib/surface/channel_init.c +6 -6
- data/src/core/lib/surface/channel_ping.c +2 -2
- data/src/core/lib/surface/completion_queue.c +56 -57
- data/src/core/lib/surface/init.c +17 -3
- data/src/core/lib/surface/init_secure.c +5 -1
- data/src/core/lib/surface/lame_client.cc +9 -10
- data/src/core/lib/surface/server.c +81 -72
- data/src/core/lib/surface/version.c +2 -2
- data/src/core/lib/transport/byte_stream.c +1 -0
- data/src/core/lib/transport/byte_stream.h +3 -1
- data/src/core/lib/transport/connectivity_state.c +2 -1
- data/src/core/lib/transport/metadata.c +7 -4
- data/src/core/lib/transport/metadata_batch.c +18 -16
- data/src/core/lib/transport/metadata_batch.h +1 -0
- data/src/core/lib/transport/service_config.c +5 -3
- data/src/core/lib/transport/static_metadata.c +395 -614
- data/src/core/lib/transport/static_metadata.h +165 -133
- data/src/core/lib/transport/status_conversion.c +1 -1
- data/src/core/lib/transport/transport.c +20 -20
- data/src/core/lib/transport/transport.h +8 -5
- data/src/core/lib/transport/transport_impl.h +0 -3
- data/src/core/lib/transport/transport_op_string.c +8 -1
- data/src/core/plugin_registry/grpc_plugin_registry.c +4 -4
- data/src/core/tsi/fake_transport_security.c +133 -2
- data/src/core/tsi/fake_transport_security.h +5 -0
- data/src/core/tsi/ssl_transport_security.c +105 -8
- data/src/core/tsi/ssl_transport_security.h +30 -7
- data/src/core/tsi/transport_security.h +8 -2
- data/src/core/tsi/transport_security_grpc.c +20 -13
- data/src/core/tsi/transport_security_grpc.h +13 -9
- data/src/ruby/ext/grpc/rb_call_credentials.c +6 -2
- data/src/ruby/ext/grpc/rb_grpc.c +1 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +30 -20
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +50 -35
- data/src/ruby/lib/grpc.rb +1 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +34 -9
- data/src/ruby/lib/grpc/generic/bidi_call.rb +19 -10
- data/src/ruby/lib/grpc/generic/client_stub.rb +95 -38
- data/src/ruby/lib/grpc/generic/interceptor_registry.rb +53 -0
- data/src/ruby/lib/grpc/generic/interceptors.rb +186 -0
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +66 -20
- data/src/ruby/lib/grpc/generic/rpc_server.rb +15 -3
- data/src/ruby/lib/grpc/google_rpc_status_utils.rb +1 -2
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +1 -0
- data/src/ruby/spec/channel_connection_spec.rb +1 -34
- data/src/ruby/spec/client_server_spec.rb +188 -82
- data/src/ruby/spec/generic/active_call_spec.rb +65 -11
- data/src/ruby/spec/generic/client_interceptors_spec.rb +153 -0
- data/src/ruby/spec/generic/interceptor_registry_spec.rb +65 -0
- data/src/ruby/spec/generic/rpc_desc_spec.rb +38 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +1 -34
- data/src/ruby/spec/generic/server_interceptors_spec.rb +218 -0
- data/src/ruby/spec/spec_helper.rb +4 -0
- data/src/ruby/spec/support/helpers.rb +73 -0
- data/src/ruby/spec/support/services.rb +147 -0
- data/third_party/cares/ares_build.h +21 -62
- data/third_party/cares/cares/ares.h +23 -1
- data/third_party/cares/cares/ares__close_sockets.c +2 -2
- data/third_party/cares/cares/ares_create_query.c +3 -3
- data/third_party/cares/cares/ares_expand_name.c +6 -2
- data/third_party/cares/cares/ares_expand_string.c +1 -1
- data/third_party/cares/cares/ares_getnameinfo.c +27 -7
- data/third_party/cares/cares/ares_init.c +407 -39
- data/third_party/cares/cares/ares_library_init.c +10 -0
- data/third_party/cares/cares/ares_library_init.h +2 -1
- data/third_party/cares/cares/ares_nowarn.c +6 -6
- data/third_party/cares/cares/ares_nowarn.h +2 -2
- data/third_party/cares/cares/ares_parse_naptr_reply.c +6 -1
- data/third_party/cares/cares/ares_private.h +11 -0
- data/third_party/cares/cares/ares_process.c +126 -37
- data/third_party/cares/cares/ares_version.h +2 -2
- data/third_party/cares/cares/ares_writev.c +2 -2
- data/third_party/cares/cares/config-win32.h +8 -34
- data/third_party/cares/cares/inet_net_pton.c +2 -2
- data/third_party/cares/cares/setup_once.h +5 -5
- data/third_party/cares/config_darwin/ares_config.h +98 -196
- data/third_party/cares/config_linux/ares_config.h +103 -203
- metadata +47 -20
- data/src/core/lib/iomgr/ev_epoll_limited_pollers_linux.c +0 -1957
- data/src/core/lib/iomgr/ev_epoll_thread_pool_linux.c +0 -1182
@@ -1,35 +1,34 @@
|
|
1
|
-
/*
|
2
|
-
/* ares_config.h.in. Generated from configure.ac by autoheader. */
|
1
|
+
/* Generated from ares_config.h.cmake*/
|
3
2
|
|
4
3
|
/* Define if building universal (internal helper macro) */
|
5
|
-
|
4
|
+
#undef AC_APPLE_UNIVERSAL_BUILD
|
6
5
|
|
7
6
|
/* define this if ares is built for a big endian system */
|
8
|
-
|
7
|
+
#undef ARES_BIG_ENDIAN
|
9
8
|
|
10
9
|
/* when building as static part of libcurl */
|
11
|
-
|
10
|
+
#undef BUILDING_LIBCURL
|
12
11
|
|
13
12
|
/* Defined for build that exposes internal static functions for testing. */
|
14
|
-
|
13
|
+
#undef CARES_EXPOSE_STATICS
|
15
14
|
|
16
15
|
/* Defined for build with symbol hiding. */
|
17
|
-
#
|
16
|
+
#undef CARES_SYMBOL_HIDING
|
18
17
|
|
19
18
|
/* Definition to make a library symbol externally visible. */
|
20
|
-
#
|
19
|
+
#undef CARES_SYMBOL_SCOPE_EXTERN
|
21
20
|
|
22
21
|
/* Use resolver library to configure cares */
|
23
22
|
/* #undef CARES_USE_LIBRESOLV */
|
24
23
|
|
25
24
|
/* if a /etc/inet dir is being used */
|
26
|
-
|
25
|
+
#undef ETC_INET
|
27
26
|
|
28
27
|
/* Define to the type of arg 2 for gethostname. */
|
29
28
|
#define GETHOSTNAME_TYPE_ARG2 size_t
|
30
29
|
|
31
30
|
/* Define to the type qualifier of arg 1 for getnameinfo. */
|
32
|
-
#define GETNAMEINFO_QUAL_ARG1
|
31
|
+
#define GETNAMEINFO_QUAL_ARG1
|
33
32
|
|
34
33
|
/* Define to the type of arg 1 for getnameinfo. */
|
35
34
|
#define GETNAMEINFO_TYPE_ARG1 struct sockaddr *
|
@@ -46,37 +45,35 @@
|
|
46
45
|
/* Specifies the number of arguments to getservbyport_r */
|
47
46
|
#define GETSERVBYPORT_R_ARGS 6
|
48
47
|
|
49
|
-
/* Specifies the size of the buffer to pass to getservbyport_r */
|
50
|
-
#define GETSERVBYPORT_R_BUFSIZE 4096
|
51
|
-
|
52
48
|
/* Define to 1 if you have AF_INET6. */
|
53
|
-
#define HAVE_AF_INET6
|
49
|
+
#define HAVE_AF_INET6
|
54
50
|
|
55
51
|
/* Define to 1 if you have the <arpa/inet.h> header file. */
|
56
|
-
#define HAVE_ARPA_INET_H
|
52
|
+
#define HAVE_ARPA_INET_H
|
57
53
|
|
58
54
|
/* Define to 1 if you have the <arpa/nameser_compat.h> header file. */
|
59
|
-
#define HAVE_ARPA_NAMESER_COMPAT_H
|
55
|
+
#define HAVE_ARPA_NAMESER_COMPAT_H
|
60
56
|
|
61
57
|
/* Define to 1 if you have the <arpa/nameser.h> header file. */
|
62
|
-
#define HAVE_ARPA_NAMESER_H
|
58
|
+
#define HAVE_ARPA_NAMESER_H
|
63
59
|
|
64
60
|
/* Define to 1 if you have the <assert.h> header file. */
|
65
|
-
#define HAVE_ASSERT_H
|
61
|
+
#define HAVE_ASSERT_H
|
66
62
|
|
67
63
|
/* Define to 1 if you have the `bitncmp' function. */
|
68
64
|
/* #undef HAVE_BITNCMP */
|
69
65
|
|
70
66
|
/* Define to 1 if bool is an available type. */
|
71
|
-
#define HAVE_BOOL_T
|
67
|
+
#define HAVE_BOOL_T
|
72
68
|
|
73
|
-
/* Define HAVE_CLOCK_GETTIME_MONOTONIC
|
69
|
+
/* Define HAVE_CLOCK_GETTIME_MONOTONIC if you have the clock_gettime
|
74
70
|
* function and monotonic timer.
|
75
71
|
*
|
72
|
+
* IMPORTANT: gRPC MANUAL EDIT HERE!
|
76
73
|
* Note: setting HAVE_CLOCK_GETTIME_MONOTONIC causes use of the clock_gettime
|
77
74
|
* function from glibc, don't set it to support glibc < 2.17 */
|
78
75
|
#ifndef GPR_BACKWARDS_COMPATIBILITY_MODE
|
79
|
-
#define HAVE_CLOCK_GETTIME_MONOTONIC
|
76
|
+
#define HAVE_CLOCK_GETTIME_MONOTONIC
|
80
77
|
#endif
|
81
78
|
|
82
79
|
/* Define to 1 if you have the closesocket function. */
|
@@ -86,73 +83,73 @@
|
|
86
83
|
/* #undef HAVE_CLOSESOCKET_CAMEL */
|
87
84
|
|
88
85
|
/* Define to 1 if you have the connect function. */
|
89
|
-
#define HAVE_CONNECT
|
86
|
+
#define HAVE_CONNECT
|
90
87
|
|
91
88
|
/* define if the compiler supports basic C++11 syntax */
|
92
|
-
#
|
89
|
+
/* #undef HAVE_CXX11 */
|
93
90
|
|
94
91
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
95
|
-
#define HAVE_DLFCN_H
|
92
|
+
#define HAVE_DLFCN_H
|
96
93
|
|
97
94
|
/* Define to 1 if you have the <errno.h> header file. */
|
98
|
-
#define HAVE_ERRNO_H
|
95
|
+
#define HAVE_ERRNO_H
|
99
96
|
|
100
97
|
/* Define to 1 if you have the fcntl function. */
|
101
|
-
#define HAVE_FCNTL
|
98
|
+
#define HAVE_FCNTL
|
102
99
|
|
103
100
|
/* Define to 1 if you have the <fcntl.h> header file. */
|
104
|
-
#define HAVE_FCNTL_H
|
101
|
+
#define HAVE_FCNTL_H
|
105
102
|
|
106
103
|
/* Define to 1 if you have a working fcntl O_NONBLOCK function. */
|
107
|
-
#define HAVE_FCNTL_O_NONBLOCK
|
104
|
+
#define HAVE_FCNTL_O_NONBLOCK
|
108
105
|
|
109
106
|
/* Define to 1 if you have the freeaddrinfo function. */
|
110
|
-
#define HAVE_FREEADDRINFO
|
107
|
+
#define HAVE_FREEADDRINFO
|
111
108
|
|
112
109
|
/* Define to 1 if you have a working getaddrinfo function. */
|
113
|
-
#define HAVE_GETADDRINFO
|
110
|
+
#define HAVE_GETADDRINFO
|
114
111
|
|
115
112
|
/* Define to 1 if the getaddrinfo function is threadsafe. */
|
116
|
-
#
|
113
|
+
/* #undef HAVE_GETADDRINFO_THREADSAFE */
|
117
114
|
|
118
115
|
/* Define to 1 if you have the getenv function. */
|
119
|
-
#define HAVE_GETENV
|
116
|
+
#define HAVE_GETENV
|
120
117
|
|
121
118
|
/* Define to 1 if you have the gethostbyaddr function. */
|
122
|
-
#define HAVE_GETHOSTBYADDR
|
119
|
+
#define HAVE_GETHOSTBYADDR
|
123
120
|
|
124
121
|
/* Define to 1 if you have the gethostbyname function. */
|
125
|
-
#define HAVE_GETHOSTBYNAME
|
122
|
+
#define HAVE_GETHOSTBYNAME
|
126
123
|
|
127
124
|
/* Define to 1 if you have the gethostname function. */
|
128
|
-
#define HAVE_GETHOSTNAME
|
125
|
+
#define HAVE_GETHOSTNAME
|
129
126
|
|
130
127
|
/* Define to 1 if you have the getnameinfo function. */
|
131
|
-
#define HAVE_GETNAMEINFO
|
128
|
+
#define HAVE_GETNAMEINFO
|
132
129
|
|
133
130
|
/* Define to 1 if you have the getservbyport_r function. */
|
134
|
-
#define HAVE_GETSERVBYPORT_R
|
131
|
+
#define HAVE_GETSERVBYPORT_R
|
135
132
|
|
136
133
|
/* Define to 1 if you have the `gettimeofday' function. */
|
137
|
-
#define HAVE_GETTIMEOFDAY
|
134
|
+
#define HAVE_GETTIMEOFDAY
|
138
135
|
|
139
136
|
/* Define to 1 if you have the `if_indextoname' function. */
|
140
|
-
#define HAVE_IF_INDEXTONAME
|
137
|
+
#define HAVE_IF_INDEXTONAME
|
141
138
|
|
142
139
|
/* Define to 1 if you have a IPv6 capable working inet_net_pton function. */
|
143
140
|
/* #undef HAVE_INET_NET_PTON */
|
144
141
|
|
145
142
|
/* Define to 1 if you have a IPv6 capable working inet_ntop function. */
|
146
|
-
#define HAVE_INET_NTOP
|
143
|
+
#define HAVE_INET_NTOP
|
147
144
|
|
148
145
|
/* Define to 1 if you have a IPv6 capable working inet_pton function. */
|
149
|
-
#define HAVE_INET_PTON
|
146
|
+
#define HAVE_INET_PTON
|
150
147
|
|
151
148
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
152
|
-
#define HAVE_INTTYPES_H
|
149
|
+
#define HAVE_INTTYPES_H
|
153
150
|
|
154
151
|
/* Define to 1 if you have the ioctl function. */
|
155
|
-
#define HAVE_IOCTL
|
152
|
+
#define HAVE_IOCTL
|
156
153
|
|
157
154
|
/* Define to 1 if you have the ioctlsocket function. */
|
158
155
|
/* #undef HAVE_IOCTLSOCKET */
|
@@ -168,109 +165,109 @@
|
|
168
165
|
/* #undef HAVE_IOCTLSOCKET_FIONBIO */
|
169
166
|
|
170
167
|
/* Define to 1 if you have a working ioctl FIONBIO function. */
|
171
|
-
#define HAVE_IOCTL_FIONBIO
|
168
|
+
#define HAVE_IOCTL_FIONBIO
|
172
169
|
|
173
170
|
/* Define to 1 if you have a working ioctl SIOCGIFADDR function. */
|
174
|
-
#define HAVE_IOCTL_SIOCGIFADDR
|
171
|
+
#define HAVE_IOCTL_SIOCGIFADDR
|
175
172
|
|
176
173
|
/* Define to 1 if you have the `resolve' library (-lresolve). */
|
177
|
-
/* #undef
|
174
|
+
/* #undef HAVE_LIBRESOLV */
|
178
175
|
|
179
176
|
/* Define to 1 if you have the <limits.h> header file. */
|
180
|
-
#define HAVE_LIMITS_H
|
177
|
+
#define HAVE_LIMITS_H
|
181
178
|
|
182
179
|
/* if your compiler supports LL */
|
183
|
-
#define HAVE_LL
|
180
|
+
#define HAVE_LL
|
184
181
|
|
185
182
|
/* Define to 1 if the compiler supports the 'long long' data type. */
|
186
|
-
#define HAVE_LONGLONG
|
183
|
+
#define HAVE_LONGLONG
|
187
184
|
|
188
185
|
/* Define to 1 if you have the malloc.h header file. */
|
189
|
-
#define HAVE_MALLOC_H
|
186
|
+
#define HAVE_MALLOC_H
|
190
187
|
|
191
188
|
/* Define to 1 if you have the memory.h header file. */
|
192
|
-
#define HAVE_MEMORY_H
|
189
|
+
#define HAVE_MEMORY_H
|
193
190
|
|
194
191
|
/* Define to 1 if you have the MSG_NOSIGNAL flag. */
|
195
|
-
#define HAVE_MSG_NOSIGNAL
|
192
|
+
#define HAVE_MSG_NOSIGNAL
|
196
193
|
|
197
194
|
/* Define to 1 if you have the <netdb.h> header file. */
|
198
|
-
#define HAVE_NETDB_H
|
195
|
+
#define HAVE_NETDB_H
|
199
196
|
|
200
197
|
/* Define to 1 if you have the <netinet/in.h> header file. */
|
201
|
-
#define HAVE_NETINET_IN_H
|
198
|
+
#define HAVE_NETINET_IN_H
|
202
199
|
|
203
200
|
/* Define to 1 if you have the <netinet/tcp.h> header file. */
|
204
|
-
#define HAVE_NETINET_TCP_H
|
201
|
+
#define HAVE_NETINET_TCP_H
|
205
202
|
|
206
203
|
/* Define to 1 if you have the <net/if.h> header file. */
|
207
|
-
#define HAVE_NET_IF_H
|
204
|
+
#define HAVE_NET_IF_H
|
208
205
|
|
209
206
|
/* Define to 1 if you have PF_INET6. */
|
210
|
-
#define HAVE_PF_INET6
|
207
|
+
#define HAVE_PF_INET6
|
211
208
|
|
212
209
|
/* Define to 1 if you have the recv function. */
|
213
|
-
#define HAVE_RECV
|
210
|
+
#define HAVE_RECV
|
214
211
|
|
215
212
|
/* Define to 1 if you have the recvfrom function. */
|
216
|
-
#define HAVE_RECVFROM
|
213
|
+
#define HAVE_RECVFROM
|
217
214
|
|
218
215
|
/* Define to 1 if you have the send function. */
|
219
|
-
#define HAVE_SEND
|
216
|
+
#define HAVE_SEND
|
220
217
|
|
221
218
|
/* Define to 1 if you have the setsockopt function. */
|
222
|
-
#define HAVE_SETSOCKOPT
|
219
|
+
#define HAVE_SETSOCKOPT
|
223
220
|
|
224
221
|
/* Define to 1 if you have a working setsockopt SO_NONBLOCK function. */
|
225
222
|
/* #undef HAVE_SETSOCKOPT_SO_NONBLOCK */
|
226
223
|
|
227
224
|
/* Define to 1 if you have the <signal.h> header file. */
|
228
|
-
#define HAVE_SIGNAL_H
|
225
|
+
#define HAVE_SIGNAL_H
|
229
226
|
|
230
227
|
/* Define to 1 if sig_atomic_t is an available typedef. */
|
231
|
-
#define HAVE_SIG_ATOMIC_T
|
228
|
+
#define HAVE_SIG_ATOMIC_T
|
232
229
|
|
233
230
|
/* Define to 1 if sig_atomic_t is already defined as volatile. */
|
234
231
|
/* #undef HAVE_SIG_ATOMIC_T_VOLATILE */
|
235
232
|
|
236
233
|
/* Define to 1 if your struct sockaddr_in6 has sin6_scope_id. */
|
237
|
-
#define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID
|
234
|
+
#define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID
|
238
235
|
|
239
236
|
/* Define to 1 if you have the socket function. */
|
240
|
-
#define HAVE_SOCKET
|
237
|
+
#define HAVE_SOCKET
|
241
238
|
|
242
239
|
/* Define to 1 if you have the <socket.h> header file. */
|
243
240
|
/* #undef HAVE_SOCKET_H */
|
244
241
|
|
245
242
|
/* Define to 1 if you have the <stdbool.h> header file. */
|
246
|
-
#define HAVE_STDBOOL_H
|
243
|
+
#define HAVE_STDBOOL_H
|
247
244
|
|
248
245
|
/* Define to 1 if you have the <stdint.h> header file. */
|
249
|
-
#define HAVE_STDINT_H
|
246
|
+
#define HAVE_STDINT_H
|
250
247
|
|
251
248
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
252
|
-
#define HAVE_STDLIB_H
|
249
|
+
#define HAVE_STDLIB_H
|
253
250
|
|
254
251
|
/* Define to 1 if you have the strcasecmp function. */
|
255
|
-
#define HAVE_STRCASECMP
|
252
|
+
#define HAVE_STRCASECMP
|
256
253
|
|
257
254
|
/* Define to 1 if you have the strcmpi function. */
|
258
255
|
/* #undef HAVE_STRCMPI */
|
259
256
|
|
260
257
|
/* Define to 1 if you have the strdup function. */
|
261
|
-
#define HAVE_STRDUP
|
258
|
+
#define HAVE_STRDUP
|
262
259
|
|
263
260
|
/* Define to 1 if you have the stricmp function. */
|
264
261
|
/* #undef HAVE_STRICMP */
|
265
262
|
|
266
263
|
/* Define to 1 if you have the <strings.h> header file. */
|
267
|
-
#define HAVE_STRINGS_H
|
264
|
+
#define HAVE_STRINGS_H
|
268
265
|
|
269
266
|
/* Define to 1 if you have the <string.h> header file. */
|
270
|
-
#define HAVE_STRING_H
|
267
|
+
#define HAVE_STRING_H
|
271
268
|
|
272
269
|
/* Define to 1 if you have the strncasecmp function. */
|
273
|
-
#define HAVE_STRNCASECMP
|
270
|
+
#define HAVE_STRNCASECMP
|
274
271
|
|
275
272
|
/* Define to 1 if you have the strncmpi function. */
|
276
273
|
/* #undef HAVE_STRNCMPI */
|
@@ -279,52 +276,52 @@
|
|
279
276
|
/* #undef HAVE_STRNICMP */
|
280
277
|
|
281
278
|
/* Define to 1 if you have the <stropts.h> header file. */
|
282
|
-
#define HAVE_STROPTS_H
|
279
|
+
#define HAVE_STROPTS_H
|
283
280
|
|
284
281
|
/* Define to 1 if you have struct addrinfo. */
|
285
|
-
#define HAVE_STRUCT_ADDRINFO
|
282
|
+
#define HAVE_STRUCT_ADDRINFO
|
286
283
|
|
287
284
|
/* Define to 1 if you have struct in6_addr. */
|
288
|
-
#define HAVE_STRUCT_IN6_ADDR
|
285
|
+
#define HAVE_STRUCT_IN6_ADDR
|
289
286
|
|
290
287
|
/* Define to 1 if you have struct sockaddr_in6. */
|
291
|
-
#define HAVE_STRUCT_SOCKADDR_IN6
|
288
|
+
#define HAVE_STRUCT_SOCKADDR_IN6
|
292
289
|
|
293
290
|
/* if struct sockaddr_storage is defined */
|
294
|
-
#define HAVE_STRUCT_SOCKADDR_STORAGE
|
291
|
+
#define HAVE_STRUCT_SOCKADDR_STORAGE
|
295
292
|
|
296
293
|
/* Define to 1 if you have the timeval struct. */
|
297
|
-
#define HAVE_STRUCT_TIMEVAL
|
294
|
+
#define HAVE_STRUCT_TIMEVAL
|
298
295
|
|
299
296
|
/* Define to 1 if you have the <sys/ioctl.h> header file. */
|
300
|
-
#define HAVE_SYS_IOCTL_H
|
297
|
+
#define HAVE_SYS_IOCTL_H
|
301
298
|
|
302
299
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
303
|
-
#define HAVE_SYS_PARAM_H
|
300
|
+
#define HAVE_SYS_PARAM_H
|
304
301
|
|
305
302
|
/* Define to 1 if you have the <sys/select.h> header file. */
|
306
|
-
#define HAVE_SYS_SELECT_H
|
303
|
+
#define HAVE_SYS_SELECT_H
|
307
304
|
|
308
305
|
/* Define to 1 if you have the <sys/socket.h> header file. */
|
309
|
-
#define HAVE_SYS_SOCKET_H
|
306
|
+
#define HAVE_SYS_SOCKET_H
|
310
307
|
|
311
308
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
312
|
-
#define HAVE_SYS_STAT_H
|
309
|
+
#define HAVE_SYS_STAT_H
|
313
310
|
|
314
311
|
/* Define to 1 if you have the <sys/time.h> header file. */
|
315
|
-
#define HAVE_SYS_TIME_H
|
312
|
+
#define HAVE_SYS_TIME_H
|
316
313
|
|
317
314
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
318
|
-
#define HAVE_SYS_TYPES_H
|
315
|
+
#define HAVE_SYS_TYPES_H
|
319
316
|
|
320
317
|
/* Define to 1 if you have the <sys/uio.h> header file. */
|
321
|
-
#define HAVE_SYS_UIO_H
|
318
|
+
#define HAVE_SYS_UIO_H
|
322
319
|
|
323
320
|
/* Define to 1 if you have the <time.h> header file. */
|
324
|
-
#define HAVE_TIME_H
|
321
|
+
#define HAVE_TIME_H
|
325
322
|
|
326
323
|
/* Define to 1 if you have the <unistd.h> header file. */
|
327
|
-
#define HAVE_UNISTD_H
|
324
|
+
#define HAVE_UNISTD_H
|
328
325
|
|
329
326
|
/* Define to 1 if you have the windows.h header file. */
|
330
327
|
/* #undef HAVE_WINDOWS_H */
|
@@ -336,53 +333,19 @@
|
|
336
333
|
/* #undef HAVE_WINSOCK_H */
|
337
334
|
|
338
335
|
/* Define to 1 if you have the writev function. */
|
339
|
-
#define HAVE_WRITEV
|
336
|
+
#define HAVE_WRITEV
|
340
337
|
|
341
338
|
/* Define to 1 if you have the ws2tcpip.h header file. */
|
342
339
|
/* #undef HAVE_WS2TCPIP_H */
|
343
340
|
|
344
|
-
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
345
|
-
*/
|
346
|
-
#define LT_OBJDIR ".libs/"
|
347
|
-
|
348
341
|
/* Define to 1 if you need the malloc.h header file even with stdlib.h */
|
349
342
|
/* #undef NEED_MALLOC_H */
|
350
343
|
|
351
344
|
/* Define to 1 if you need the memory.h header file even with stdlib.h */
|
352
345
|
/* #undef NEED_MEMORY_H */
|
353
346
|
|
354
|
-
/* Define to 1 if _REENTRANT preprocessor symbol must be defined. */
|
355
|
-
/* #undef NEED_REENTRANT */
|
356
|
-
|
357
|
-
/* Define to 1 if _THREAD_SAFE preprocessor symbol must be defined. */
|
358
|
-
/* #undef NEED_THREAD_SAFE */
|
359
|
-
|
360
|
-
/* cpu-machine-OS */
|
361
|
-
#define OS "i386-unknown-linux-gnu"
|
362
|
-
|
363
|
-
/* Name of package */
|
364
|
-
#define PACKAGE "c-ares"
|
365
|
-
|
366
|
-
/* Define to the address where bug reports for this package should be sent. */
|
367
|
-
#define PACKAGE_BUGREPORT "c-ares mailing list: http://cool.haxx.se/mailman/listinfo/c-ares"
|
368
|
-
|
369
|
-
/* Define to the full name of this package. */
|
370
|
-
#define PACKAGE_NAME "c-ares"
|
371
|
-
|
372
|
-
/* Define to the full name and version of this package. */
|
373
|
-
#define PACKAGE_STRING "c-ares -"
|
374
|
-
|
375
|
-
/* Define to the one symbol short name of this package. */
|
376
|
-
#define PACKAGE_TARNAME "c-ares"
|
377
|
-
|
378
|
-
/* Define to the home page for this package. */
|
379
|
-
#define PACKAGE_URL ""
|
380
|
-
|
381
|
-
/* Define to the version of this package. */
|
382
|
-
#define PACKAGE_VERSION "-"
|
383
|
-
|
384
347
|
/* a suitable file/device to read random data from */
|
385
|
-
#
|
348
|
+
/* #undef RANDOM_FILE */
|
386
349
|
|
387
350
|
/* Define to the type qualifier pointed by arg 5 for recvfrom. */
|
388
351
|
#define RECVFROM_QUAL_ARG5
|
@@ -391,10 +354,10 @@
|
|
391
354
|
#define RECVFROM_TYPE_ARG1 int
|
392
355
|
|
393
356
|
/* Define to the type pointed by arg 2 for recvfrom. */
|
394
|
-
#define RECVFROM_TYPE_ARG2 void
|
357
|
+
#define RECVFROM_TYPE_ARG2 void *
|
395
358
|
|
396
359
|
/* Define to 1 if the type pointed by arg 2 for recvfrom is void. */
|
397
|
-
#define RECVFROM_TYPE_ARG2_IS_VOID
|
360
|
+
#define RECVFROM_TYPE_ARG2_IS_VOID 0
|
398
361
|
|
399
362
|
/* Define to the type of arg 3 for recvfrom. */
|
400
363
|
#define RECVFROM_TYPE_ARG3 size_t
|
@@ -403,16 +366,16 @@
|
|
403
366
|
#define RECVFROM_TYPE_ARG4 int
|
404
367
|
|
405
368
|
/* Define to the type pointed by arg 5 for recvfrom. */
|
406
|
-
#define RECVFROM_TYPE_ARG5 struct sockaddr
|
369
|
+
#define RECVFROM_TYPE_ARG5 struct sockaddr *
|
407
370
|
|
408
371
|
/* Define to 1 if the type pointed by arg 5 for recvfrom is void. */
|
409
|
-
|
372
|
+
#define RECVFROM_TYPE_ARG5_IS_VOID 0
|
410
373
|
|
411
374
|
/* Define to the type pointed by arg 6 for recvfrom. */
|
412
|
-
#define RECVFROM_TYPE_ARG6 socklen_t
|
375
|
+
#define RECVFROM_TYPE_ARG6 socklen_t *
|
413
376
|
|
414
377
|
/* Define to 1 if the type pointed by arg 6 for recvfrom is void. */
|
415
|
-
|
378
|
+
#define RECVFROM_TYPE_ARG6_IS_VOID 0
|
416
379
|
|
417
380
|
/* Define to the function return type for recvfrom. */
|
418
381
|
#define RECVFROM_TYPE_RETV ssize_t
|
@@ -433,10 +396,10 @@
|
|
433
396
|
#define RECV_TYPE_RETV ssize_t
|
434
397
|
|
435
398
|
/* Define as the return type of signal handlers (`int' or `void'). */
|
436
|
-
#define RETSIGTYPE
|
399
|
+
#define RETSIGTYPE
|
437
400
|
|
438
401
|
/* Define to the type qualifier of arg 2 for send. */
|
439
|
-
#define SEND_QUAL_ARG2
|
402
|
+
#define SEND_QUAL_ARG2
|
440
403
|
|
441
404
|
/* Define to the type of arg 1 for send. */
|
442
405
|
#define SEND_TYPE_ARG1 int
|
@@ -453,66 +416,21 @@
|
|
453
416
|
/* Define to the function return type for send. */
|
454
417
|
#define SEND_TYPE_RETV ssize_t
|
455
418
|
|
456
|
-
/* The size of `int', as computed by sizeof. */
|
457
|
-
#define SIZEOF_INT 4
|
458
|
-
|
459
|
-
/* The size of `long', as computed by sizeof. */
|
460
|
-
#define SIZEOF_LONG 4
|
461
|
-
|
462
|
-
/* The size of `short', as computed by sizeof. */
|
463
|
-
#define SIZEOF_SHORT 2
|
464
|
-
|
465
|
-
/* The size of `size_t', as computed by sizeof. */
|
466
|
-
#define SIZEOF_SIZE_T 4
|
467
|
-
|
468
|
-
/* The size of `struct in6_addr', as computed by sizeof. */
|
469
|
-
#define SIZEOF_STRUCT_IN6_ADDR 16
|
470
|
-
|
471
|
-
/* The size of `struct in_addr', as computed by sizeof. */
|
472
|
-
#define SIZEOF_STRUCT_IN_ADDR 4
|
473
|
-
|
474
|
-
/* The size of `time_t', as computed by sizeof. */
|
475
|
-
#define SIZEOF_TIME_T 4
|
476
|
-
|
477
|
-
/* Define to 1 if you have the ANSI C header files. */
|
478
|
-
#define STDC_HEADERS 1
|
479
|
-
|
480
419
|
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
|
481
|
-
#define TIME_WITH_SYS_TIME
|
420
|
+
#define TIME_WITH_SYS_TIME
|
482
421
|
|
483
422
|
/* Define to disable non-blocking sockets. */
|
484
|
-
|
485
|
-
|
486
|
-
/* Version number of package */
|
487
|
-
#define VERSION "-"
|
423
|
+
#undef USE_BLOCKING_SOCKETS
|
488
424
|
|
489
425
|
/* Define to avoid automatic inclusion of winsock.h */
|
490
|
-
|
491
|
-
|
492
|
-
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
493
|
-
significant byte first (like Motorola and SPARC, unlike Intel). */
|
494
|
-
#if defined AC_APPLE_UNIVERSAL_BUILD
|
495
|
-
# if defined __BIG_ENDIAN__
|
496
|
-
# define WORDS_BIGENDIAN 1
|
497
|
-
# endif
|
498
|
-
#else
|
499
|
-
# ifndef WORDS_BIGENDIAN
|
500
|
-
/* # undef WORDS_BIGENDIAN */
|
501
|
-
# endif
|
502
|
-
#endif
|
503
|
-
|
504
|
-
/* Define to 1 if OS is AIX. */
|
505
|
-
#ifndef _ALL_SOURCE
|
506
|
-
/* # undef _ALL_SOURCE */
|
507
|
-
#endif
|
426
|
+
#undef WIN32_LEAN_AND_MEAN
|
508
427
|
|
509
|
-
/*
|
510
|
-
#
|
511
|
-
# define _DARWIN_USE_64_BIT_INODE 1
|
512
|
-
#endif
|
428
|
+
/* Type to use in place of in_addr_t when system does not provide it. */
|
429
|
+
#undef in_addr_t
|
513
430
|
|
514
431
|
#ifdef GPR_BACKWARDS_COMPATIBILITY_MODE
|
515
|
-
/*
|
432
|
+
/* IMPORTANT: gRPC MANUAL EDIT HERE!
|
433
|
+
* Redefine the fd_set macros for GLIBC < 2.15 support.
|
516
434
|
* This is a backwards compatibility hack. At version 2.15, GLIBC introduces
|
517
435
|
* the __fdelt_chk function, and starts using it within its fd_set macros
|
518
436
|
* (which c-ares uses). For compatibility with GLIBC < 2.15, we need to redefine
|
@@ -538,21 +456,3 @@
|
|
538
456
|
#define FD_ISSET(d, set) \
|
539
457
|
((GRPC_CARES_FDS_BITS (set)[ (d) / NFDBITS ] & GRPC_CARES_FD_MASK(d)) != 0)
|
540
458
|
#endif /* GPR_BACKWARDS_COMPATIBILITY_MODE */
|
541
|
-
|
542
|
-
/* Number of bits in a file offset, on hosts where this is settable. */
|
543
|
-
/* #undef _FILE_OFFSET_BITS */
|
544
|
-
|
545
|
-
/* Define for large files, on AIX-style hosts. */
|
546
|
-
/* #undef _LARGE_FILES */
|
547
|
-
|
548
|
-
/* Define to empty if `const' does not conform to ANSI C. */
|
549
|
-
/* #undef const */
|
550
|
-
|
551
|
-
/* Type to use in place of in_addr_t when system does not provide it. */
|
552
|
-
/* #undef in_addr_t */
|
553
|
-
|
554
|
-
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
555
|
-
/* #undef size_t */
|
556
|
-
|
557
|
-
/* the signed version of size_t */
|
558
|
-
/* #undef ssize_t */
|