├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── RELEASE.md ├── all_channels.go ├── all_channels_test.go ├── arguments.go ├── arguments_test.go ├── benchmark ├── benchclient │ └── main.go ├── benchserver │ └── main.go ├── build_manager.go ├── client_server_bench_test.go ├── external_client.go ├── external_common.go ├── external_server.go ├── frame_templates.go ├── interfaces.go ├── internal_client.go ├── internal_multi_client.go ├── internal_server.go ├── internal_tcp_client.go ├── internal_tcp_server.go ├── matrix_test.go ├── options.go ├── real_relay.go ├── req_bytes.go ├── tcp_bench_test.go ├── tcp_frame_relay.go └── tcp_raw_relay.go ├── calloptions.go ├── calloptions_test.go ├── channel.go ├── channel_test.go ├── channel_utils_test.go ├── channelstate_string.go ├── checked_frame_pool.go ├── checked_frame_pool_test.go ├── checksum.go ├── close_test.go ├── codecov.yml ├── conn_leak_test.go ├── connection.go ├── connection_bench_test.go ├── connection_direction.go ├── connection_internal_test.go ├── connection_test.go ├── connectionstate_string.go ├── context.go ├── context_builder.go ├── context_header.go ├── context_internal_test.go ├── context_test.go ├── crossdock ├── .gitignore ├── Dockerfile ├── behavior │ └── trace │ │ ├── api.go │ │ ├── behavior.go │ │ ├── behavior_test.go │ │ ├── constants.go │ │ ├── json.go │ │ └── thrift.go ├── client │ ├── client.go │ └── client_test.go ├── common │ └── constants.go ├── docker-compose.yml ├── log │ └── logging.go ├── main.go ├── rules.mk └── server │ ├── server.go │ └── server_test.go ├── deps_test.go ├── dial_16.go ├── dial_17.go ├── dial_17_test.go ├── doc.go ├── errors.go ├── errors_test.go ├── examples ├── bench │ ├── client │ │ └── client.go │ ├── runner.go │ └── server │ │ └── server.go ├── hyperbahn │ └── echo-server │ │ └── main.go ├── hypercat │ └── main.go ├── keyvalue │ ├── README.md │ ├── client │ │ └── client.go │ ├── gen-go │ │ └── keyvalue │ │ │ ├── admin.go │ │ │ ├── baseservice.go │ │ │ ├── constants.go │ │ │ ├── keyvalue.go │ │ │ ├── tchan-keyvalue.go │ │ │ └── ttypes.go │ ├── keyvalue.thrift │ └── server │ │ └── server.go ├── ping │ ├── README.md │ └── main.go ├── test_server │ └── server.go └── thrift │ ├── example.thrift │ ├── gen-go │ └── example │ │ ├── base.go │ │ ├── constants.go │ │ ├── first.go │ │ ├── second.go │ │ ├── tchan-example.go │ │ └── ttypes.go │ └── main.go ├── fragmentation_test.go ├── fragmenting_reader.go ├── fragmenting_writer.go ├── frame.go ├── frame_pool.go ├── frame_pool_b_test.go ├── frame_pool_test.go ├── frame_test.go ├── frame_utils_test.go ├── go.mod ├── go.sum ├── guide └── Thrift_Hyperbahn.md ├── handlers.go ├── handlers_test.go ├── handlers_with_skip_test.go ├── health.go ├── health_ext_test.go ├── health_test.go ├── http ├── buf.go ├── buf_test.go ├── http_test.go ├── request.go └── response.go ├── hyperbahn ├── advertise.go ├── advertise_test.go ├── call.go ├── client.go ├── client_test.go ├── configuration.go ├── discover.go ├── discover_test.go ├── event_string.go ├── events.go ├── gen-go │ └── hyperbahn │ │ ├── constants.go │ │ ├── hyperbahn.go │ │ ├── tchan-hyperbahn.go │ │ └── ttypes.go ├── hyperbahn.thrift ├── utils.go └── utils_test.go ├── idle_sweep.go ├── idle_sweep_test.go ├── inbound.go ├── inbound_internal_test.go ├── inbound_test.go ├── incoming_test.go ├── init_test.go ├── internal ├── argreader │ ├── empty.go │ └── empty_test.go └── testcert │ └── testcert.go ├── introspection.go ├── introspection_test.go ├── json ├── call.go ├── context.go ├── handler.go ├── json_test.go ├── retry_test.go └── tracing_test.go ├── largereq_test.go ├── localip.go ├── localip_test.go ├── logger.go ├── logger_test.go ├── messages.go ├── messages_test.go ├── messagetype_string.go ├── mex.go ├── mex_utils_test.go ├── outbound.go ├── peer.go ├── peer_bench_test.go ├── peer_heap.go ├── peer_heap_test.go ├── peer_internal_test.go ├── peer_strategies.go ├── peer_test.go ├── peers ├── doc.go ├── prefer.go └── prefer_test.go ├── pprof ├── pprof.go └── pprof_test.go ├── preinit_connection.go ├── raw ├── call.go └── handler.go ├── relay.go ├── relay ├── relay.go └── relaytest │ ├── func_host.go │ ├── mock_stats.go │ └── stub_host.go ├── relay_api.go ├── relay_benchmark_test.go ├── relay_fragment_sender_test.go ├── relay_internal_test.go ├── relay_messages.go ├── relay_messages_benchmark_test.go ├── relay_messages_test.go ├── relay_test.go ├── relay_timer_pool.go ├── reqres.go ├── reqresreaderstate_string.go ├── reqreswriterstate_string.go ├── retry.go ├── retry_request_test.go ├── retry_test.go ├── retryon_string.go ├── root_peer_list.go ├── scripts ├── install-thrift.sh └── vbumper │ └── main.go ├── sockio_bsd.go ├── sockio_darwin.go ├── sockio_linux.go ├── sockio_non_unix.go ├── sockio_unix.go ├── stats.go ├── stats ├── metrickey.go ├── metrickey_test.go ├── statsdreporter.go ├── tally.go └── tally_test.go ├── stats_test.go ├── stats_utils_test.go ├── stream_test.go ├── stress_flag_test.go ├── subchannel.go ├── subchannel_test.go ├── systemerrcode_string.go ├── tchannel_test.go ├── testutils ├── call.go ├── channel.go ├── channel_opts.go ├── channel_t.go ├── conn.go ├── counter.go ├── counter_test.go ├── data.go ├── echo.go ├── goroutines │ ├── stacks.go │ ├── verify.go │ └── verify_opts.go ├── lists.go ├── logfilter_test.go ├── logger.go ├── mockhyperbahn │ ├── hyperbahn.go │ ├── hyperbahn_test.go │ └── utils.go ├── now.go ├── random_bench_test.go ├── relay.go ├── sleep.go ├── test_server.go ├── testreader │ ├── chunk.go │ ├── chunk_test.go │ ├── loop.go │ └── loop_test.go ├── testtracing │ ├── propagation.go │ └── propagation_test.go ├── testwriter │ ├── limited.go │ └── limited_test.go ├── thriftarg2test │ ├── arg2_kv.go │ └── arg2_kv_test.go ├── ticker.go ├── ticker_test.go ├── timeout.go └── wait.go ├── thirdparty └── github.com │ └── apache │ └── thrift │ └── lib │ └── go │ └── thrift │ ├── application_exception.go │ ├── application_exception_test.go │ ├── binary_protocol.go │ ├── binary_protocol_test.go │ ├── buffered_transport.go │ ├── buffered_transport_test.go │ ├── compact_protocol.go │ ├── compact_protocol_test.go │ ├── debug_protocol.go │ ├── deserializer.go │ ├── exception.go │ ├── exception_test.go │ ├── field.go │ ├── framed_transport.go │ ├── framed_transport_test.go │ ├── http_client.go │ ├── http_client_test.go │ ├── http_transport.go │ ├── iostream_transport.go │ ├── iostream_transport_test.go │ ├── json_protocol.go │ ├── json_protocol_test.go │ ├── lowlevel_benchmarks_test.go │ ├── memory_buffer.go │ ├── memory_buffer_test.go │ ├── messagetype.go │ ├── multiplexed_protocol.go │ ├── numeric.go │ ├── pointerize.go │ ├── processor.go │ ├── processor_factory.go │ ├── protocol.go │ ├── protocol_exception.go │ ├── protocol_factory.go │ ├── protocol_test.go │ ├── rich_transport.go │ ├── rich_transport_test.go │ ├── serializer.go │ ├── serializer_test.go │ ├── serializer_types_test.go │ ├── server.go │ ├── server_socket.go │ ├── server_socket_test.go │ ├── server_test.go │ ├── server_transport.go │ ├── simple_json_protocol.go │ ├── simple_json_protocol_test.go │ ├── simple_server.go │ ├── socket.go │ ├── ssl_server_socket.go │ ├── ssl_socket.go │ ├── transport.go │ ├── transport_exception.go │ ├── transport_exception_test.go │ ├── transport_factory.go │ ├── transport_test.go │ ├── type.go │ ├── zlib_transport.go │ └── zlib_transport_test.go ├── thrift ├── arg2 │ ├── kv_iterator.go │ └── kv_iterator_test.go ├── client.go ├── context.go ├── context_test.go ├── doc.go ├── errors_test.go ├── gen-go │ ├── meta │ │ ├── constants.go │ │ ├── meta.go │ │ └── ttypes.go │ └── test │ │ ├── constants.go │ │ ├── meta.go │ │ ├── secondservice.go │ │ ├── simpleservice.go │ │ ├── tchan-test.go │ │ └── ttypes.go ├── headers.go ├── headers_test.go ├── interfaces.go ├── meta.go ├── meta.thrift ├── meta_test.go ├── mocks │ ├── TChanMeta.go │ ├── TChanSecondService.go │ └── TChanSimpleService.go ├── options.go ├── server.go ├── server_test.go ├── struct.go ├── struct_test.go ├── tchan-meta.go ├── test.thrift ├── thrift-gen │ ├── compile_test.go │ ├── extends.go │ ├── generate.go │ ├── gopath.go │ ├── gopath_test.go │ ├── include.go │ ├── main.go │ ├── names.go │ ├── tchannel-template.go │ ├── template.go │ ├── test_files │ │ ├── binary.thrift │ │ ├── byte.thrift │ │ ├── gokeywords.thrift │ │ ├── include_test │ │ │ ├── namespace │ │ │ │ ├── a │ │ │ │ │ └── shared.thrift │ │ │ │ ├── b │ │ │ │ │ └── shared.thrift │ │ │ │ └── namespace.thrift │ │ │ ├── simple │ │ │ │ ├── shared.thrift │ │ │ │ ├── shared2.thrift │ │ │ │ └── simple.thrift │ │ │ └── svc_extend │ │ │ │ ├── shared.thrift │ │ │ │ └── svc_extend.thrift │ │ ├── multi_test │ │ │ ├── file1.thrift │ │ │ └── file2.thrift │ │ ├── service_extend.thrift │ │ ├── sets.thrift │ │ ├── test1.thrift │ │ ├── typedefs.thrift │ │ └── union.thrift │ ├── typestate.go │ ├── validate.go │ └── wrap.go ├── thrift_bench_test.go ├── thrift_test.go ├── tracing_test.go ├── transport.go └── transport_test.go ├── tnet ├── listener.go └── listener_test.go ├── tos ├── tos.go ├── tos_string.go └── tos_test.go ├── trace └── doc.go ├── tracing.go ├── tracing_internal_test.go ├── tracing_keys.go ├── tracing_test.go ├── trand └── rand.go ├── typed ├── buffer.go ├── buffer_test.go ├── reader.go ├── reader_test.go ├── writer.go └── writer_test.go ├── utils_for_test.go ├── verify_utils_test.go └── version.go /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/RELEASE.md -------------------------------------------------------------------------------- /all_channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/all_channels.go -------------------------------------------------------------------------------- /all_channels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/all_channels_test.go -------------------------------------------------------------------------------- /arguments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/arguments.go -------------------------------------------------------------------------------- /arguments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/arguments_test.go -------------------------------------------------------------------------------- /benchmark/benchclient/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/benchclient/main.go -------------------------------------------------------------------------------- /benchmark/benchserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/benchserver/main.go -------------------------------------------------------------------------------- /benchmark/build_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/build_manager.go -------------------------------------------------------------------------------- /benchmark/client_server_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/client_server_bench_test.go -------------------------------------------------------------------------------- /benchmark/external_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/external_client.go -------------------------------------------------------------------------------- /benchmark/external_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/external_common.go -------------------------------------------------------------------------------- /benchmark/external_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/external_server.go -------------------------------------------------------------------------------- /benchmark/frame_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/frame_templates.go -------------------------------------------------------------------------------- /benchmark/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/interfaces.go -------------------------------------------------------------------------------- /benchmark/internal_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/internal_client.go -------------------------------------------------------------------------------- /benchmark/internal_multi_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/internal_multi_client.go -------------------------------------------------------------------------------- /benchmark/internal_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/internal_server.go -------------------------------------------------------------------------------- /benchmark/internal_tcp_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/internal_tcp_client.go -------------------------------------------------------------------------------- /benchmark/internal_tcp_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/internal_tcp_server.go -------------------------------------------------------------------------------- /benchmark/matrix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/matrix_test.go -------------------------------------------------------------------------------- /benchmark/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/options.go -------------------------------------------------------------------------------- /benchmark/real_relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/real_relay.go -------------------------------------------------------------------------------- /benchmark/req_bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/req_bytes.go -------------------------------------------------------------------------------- /benchmark/tcp_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/tcp_bench_test.go -------------------------------------------------------------------------------- /benchmark/tcp_frame_relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/tcp_frame_relay.go -------------------------------------------------------------------------------- /benchmark/tcp_raw_relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/benchmark/tcp_raw_relay.go -------------------------------------------------------------------------------- /calloptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/calloptions.go -------------------------------------------------------------------------------- /calloptions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/calloptions_test.go -------------------------------------------------------------------------------- /channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/channel.go -------------------------------------------------------------------------------- /channel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/channel_test.go -------------------------------------------------------------------------------- /channel_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/channel_utils_test.go -------------------------------------------------------------------------------- /channelstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/channelstate_string.go -------------------------------------------------------------------------------- /checked_frame_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/checked_frame_pool.go -------------------------------------------------------------------------------- /checked_frame_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/checked_frame_pool_test.go -------------------------------------------------------------------------------- /checksum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/checksum.go -------------------------------------------------------------------------------- /close_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/close_test.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/codecov.yml -------------------------------------------------------------------------------- /conn_leak_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/conn_leak_test.go -------------------------------------------------------------------------------- /connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/connection.go -------------------------------------------------------------------------------- /connection_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/connection_bench_test.go -------------------------------------------------------------------------------- /connection_direction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/connection_direction.go -------------------------------------------------------------------------------- /connection_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/connection_internal_test.go -------------------------------------------------------------------------------- /connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/connection_test.go -------------------------------------------------------------------------------- /connectionstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/connectionstate_string.go -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/context.go -------------------------------------------------------------------------------- /context_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/context_builder.go -------------------------------------------------------------------------------- /context_header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/context_header.go -------------------------------------------------------------------------------- /context_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/context_internal_test.go -------------------------------------------------------------------------------- /context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/context_test.go -------------------------------------------------------------------------------- /crossdock/.gitignore: -------------------------------------------------------------------------------- 1 | /crossdock 2 | -------------------------------------------------------------------------------- /crossdock/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/Dockerfile -------------------------------------------------------------------------------- /crossdock/behavior/trace/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/behavior/trace/api.go -------------------------------------------------------------------------------- /crossdock/behavior/trace/behavior.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/behavior/trace/behavior.go -------------------------------------------------------------------------------- /crossdock/behavior/trace/behavior_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/behavior/trace/behavior_test.go -------------------------------------------------------------------------------- /crossdock/behavior/trace/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/behavior/trace/constants.go -------------------------------------------------------------------------------- /crossdock/behavior/trace/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/behavior/trace/json.go -------------------------------------------------------------------------------- /crossdock/behavior/trace/thrift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/behavior/trace/thrift.go -------------------------------------------------------------------------------- /crossdock/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/client/client.go -------------------------------------------------------------------------------- /crossdock/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/client/client_test.go -------------------------------------------------------------------------------- /crossdock/common/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/common/constants.go -------------------------------------------------------------------------------- /crossdock/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/docker-compose.yml -------------------------------------------------------------------------------- /crossdock/log/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/log/logging.go -------------------------------------------------------------------------------- /crossdock/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/main.go -------------------------------------------------------------------------------- /crossdock/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/rules.mk -------------------------------------------------------------------------------- /crossdock/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/server/server.go -------------------------------------------------------------------------------- /crossdock/server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/crossdock/server/server_test.go -------------------------------------------------------------------------------- /deps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/deps_test.go -------------------------------------------------------------------------------- /dial_16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/dial_16.go -------------------------------------------------------------------------------- /dial_17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/dial_17.go -------------------------------------------------------------------------------- /dial_17_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/dial_17_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/doc.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/errors.go -------------------------------------------------------------------------------- /errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/errors_test.go -------------------------------------------------------------------------------- /examples/bench/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/bench/client/client.go -------------------------------------------------------------------------------- /examples/bench/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/bench/runner.go -------------------------------------------------------------------------------- /examples/bench/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/bench/server/server.go -------------------------------------------------------------------------------- /examples/hyperbahn/echo-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/hyperbahn/echo-server/main.go -------------------------------------------------------------------------------- /examples/hypercat/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/hypercat/main.go -------------------------------------------------------------------------------- /examples/keyvalue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/keyvalue/README.md -------------------------------------------------------------------------------- /examples/keyvalue/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/keyvalue/client/client.go -------------------------------------------------------------------------------- /examples/keyvalue/gen-go/keyvalue/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/keyvalue/gen-go/keyvalue/admin.go -------------------------------------------------------------------------------- /examples/keyvalue/gen-go/keyvalue/baseservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/keyvalue/gen-go/keyvalue/baseservice.go -------------------------------------------------------------------------------- /examples/keyvalue/gen-go/keyvalue/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/keyvalue/gen-go/keyvalue/constants.go -------------------------------------------------------------------------------- /examples/keyvalue/gen-go/keyvalue/keyvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/keyvalue/gen-go/keyvalue/keyvalue.go -------------------------------------------------------------------------------- /examples/keyvalue/gen-go/keyvalue/tchan-keyvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/keyvalue/gen-go/keyvalue/tchan-keyvalue.go -------------------------------------------------------------------------------- /examples/keyvalue/gen-go/keyvalue/ttypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/keyvalue/gen-go/keyvalue/ttypes.go -------------------------------------------------------------------------------- /examples/keyvalue/keyvalue.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/keyvalue/keyvalue.thrift -------------------------------------------------------------------------------- /examples/keyvalue/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/keyvalue/server/server.go -------------------------------------------------------------------------------- /examples/ping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/ping/README.md -------------------------------------------------------------------------------- /examples/ping/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/ping/main.go -------------------------------------------------------------------------------- /examples/test_server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/test_server/server.go -------------------------------------------------------------------------------- /examples/thrift/example.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/thrift/example.thrift -------------------------------------------------------------------------------- /examples/thrift/gen-go/example/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/thrift/gen-go/example/base.go -------------------------------------------------------------------------------- /examples/thrift/gen-go/example/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/thrift/gen-go/example/constants.go -------------------------------------------------------------------------------- /examples/thrift/gen-go/example/first.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/thrift/gen-go/example/first.go -------------------------------------------------------------------------------- /examples/thrift/gen-go/example/second.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/thrift/gen-go/example/second.go -------------------------------------------------------------------------------- /examples/thrift/gen-go/example/tchan-example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/thrift/gen-go/example/tchan-example.go -------------------------------------------------------------------------------- /examples/thrift/gen-go/example/ttypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/thrift/gen-go/example/ttypes.go -------------------------------------------------------------------------------- /examples/thrift/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/examples/thrift/main.go -------------------------------------------------------------------------------- /fragmentation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/fragmentation_test.go -------------------------------------------------------------------------------- /fragmenting_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/fragmenting_reader.go -------------------------------------------------------------------------------- /fragmenting_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/fragmenting_writer.go -------------------------------------------------------------------------------- /frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/frame.go -------------------------------------------------------------------------------- /frame_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/frame_pool.go -------------------------------------------------------------------------------- /frame_pool_b_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/frame_pool_b_test.go -------------------------------------------------------------------------------- /frame_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/frame_pool_test.go -------------------------------------------------------------------------------- /frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/frame_test.go -------------------------------------------------------------------------------- /frame_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/frame_utils_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/go.sum -------------------------------------------------------------------------------- /guide/Thrift_Hyperbahn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/guide/Thrift_Hyperbahn.md -------------------------------------------------------------------------------- /handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/handlers.go -------------------------------------------------------------------------------- /handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/handlers_test.go -------------------------------------------------------------------------------- /handlers_with_skip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/handlers_with_skip_test.go -------------------------------------------------------------------------------- /health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/health.go -------------------------------------------------------------------------------- /health_ext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/health_ext_test.go -------------------------------------------------------------------------------- /health_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/health_test.go -------------------------------------------------------------------------------- /http/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/http/buf.go -------------------------------------------------------------------------------- /http/buf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/http/buf_test.go -------------------------------------------------------------------------------- /http/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/http/http_test.go -------------------------------------------------------------------------------- /http/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/http/request.go -------------------------------------------------------------------------------- /http/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/http/response.go -------------------------------------------------------------------------------- /hyperbahn/advertise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/advertise.go -------------------------------------------------------------------------------- /hyperbahn/advertise_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/advertise_test.go -------------------------------------------------------------------------------- /hyperbahn/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/call.go -------------------------------------------------------------------------------- /hyperbahn/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/client.go -------------------------------------------------------------------------------- /hyperbahn/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/client_test.go -------------------------------------------------------------------------------- /hyperbahn/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/configuration.go -------------------------------------------------------------------------------- /hyperbahn/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/discover.go -------------------------------------------------------------------------------- /hyperbahn/discover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/discover_test.go -------------------------------------------------------------------------------- /hyperbahn/event_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/event_string.go -------------------------------------------------------------------------------- /hyperbahn/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/events.go -------------------------------------------------------------------------------- /hyperbahn/gen-go/hyperbahn/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/gen-go/hyperbahn/constants.go -------------------------------------------------------------------------------- /hyperbahn/gen-go/hyperbahn/hyperbahn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/gen-go/hyperbahn/hyperbahn.go -------------------------------------------------------------------------------- /hyperbahn/gen-go/hyperbahn/tchan-hyperbahn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/gen-go/hyperbahn/tchan-hyperbahn.go -------------------------------------------------------------------------------- /hyperbahn/gen-go/hyperbahn/ttypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/gen-go/hyperbahn/ttypes.go -------------------------------------------------------------------------------- /hyperbahn/hyperbahn.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/hyperbahn.thrift -------------------------------------------------------------------------------- /hyperbahn/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/utils.go -------------------------------------------------------------------------------- /hyperbahn/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/hyperbahn/utils_test.go -------------------------------------------------------------------------------- /idle_sweep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/idle_sweep.go -------------------------------------------------------------------------------- /idle_sweep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/idle_sweep_test.go -------------------------------------------------------------------------------- /inbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/inbound.go -------------------------------------------------------------------------------- /inbound_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/inbound_internal_test.go -------------------------------------------------------------------------------- /inbound_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/inbound_test.go -------------------------------------------------------------------------------- /incoming_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/incoming_test.go -------------------------------------------------------------------------------- /init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/init_test.go -------------------------------------------------------------------------------- /internal/argreader/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/internal/argreader/empty.go -------------------------------------------------------------------------------- /internal/argreader/empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/internal/argreader/empty_test.go -------------------------------------------------------------------------------- /internal/testcert/testcert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/internal/testcert/testcert.go -------------------------------------------------------------------------------- /introspection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/introspection.go -------------------------------------------------------------------------------- /introspection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/introspection_test.go -------------------------------------------------------------------------------- /json/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/json/call.go -------------------------------------------------------------------------------- /json/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/json/context.go -------------------------------------------------------------------------------- /json/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/json/handler.go -------------------------------------------------------------------------------- /json/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/json/json_test.go -------------------------------------------------------------------------------- /json/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/json/retry_test.go -------------------------------------------------------------------------------- /json/tracing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/json/tracing_test.go -------------------------------------------------------------------------------- /largereq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/largereq_test.go -------------------------------------------------------------------------------- /localip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/localip.go -------------------------------------------------------------------------------- /localip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/localip_test.go -------------------------------------------------------------------------------- /logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/logger.go -------------------------------------------------------------------------------- /logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/logger_test.go -------------------------------------------------------------------------------- /messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/messages.go -------------------------------------------------------------------------------- /messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/messages_test.go -------------------------------------------------------------------------------- /messagetype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/messagetype_string.go -------------------------------------------------------------------------------- /mex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/mex.go -------------------------------------------------------------------------------- /mex_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/mex_utils_test.go -------------------------------------------------------------------------------- /outbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/outbound.go -------------------------------------------------------------------------------- /peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/peer.go -------------------------------------------------------------------------------- /peer_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/peer_bench_test.go -------------------------------------------------------------------------------- /peer_heap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/peer_heap.go -------------------------------------------------------------------------------- /peer_heap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/peer_heap_test.go -------------------------------------------------------------------------------- /peer_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/peer_internal_test.go -------------------------------------------------------------------------------- /peer_strategies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/peer_strategies.go -------------------------------------------------------------------------------- /peer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/peer_test.go -------------------------------------------------------------------------------- /peers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/peers/doc.go -------------------------------------------------------------------------------- /peers/prefer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/peers/prefer.go -------------------------------------------------------------------------------- /peers/prefer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/peers/prefer_test.go -------------------------------------------------------------------------------- /pprof/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/pprof/pprof.go -------------------------------------------------------------------------------- /pprof/pprof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/pprof/pprof_test.go -------------------------------------------------------------------------------- /preinit_connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/preinit_connection.go -------------------------------------------------------------------------------- /raw/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/raw/call.go -------------------------------------------------------------------------------- /raw/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/raw/handler.go -------------------------------------------------------------------------------- /relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay.go -------------------------------------------------------------------------------- /relay/relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay/relay.go -------------------------------------------------------------------------------- /relay/relaytest/func_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay/relaytest/func_host.go -------------------------------------------------------------------------------- /relay/relaytest/mock_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay/relaytest/mock_stats.go -------------------------------------------------------------------------------- /relay/relaytest/stub_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay/relaytest/stub_host.go -------------------------------------------------------------------------------- /relay_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay_api.go -------------------------------------------------------------------------------- /relay_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay_benchmark_test.go -------------------------------------------------------------------------------- /relay_fragment_sender_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay_fragment_sender_test.go -------------------------------------------------------------------------------- /relay_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay_internal_test.go -------------------------------------------------------------------------------- /relay_messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay_messages.go -------------------------------------------------------------------------------- /relay_messages_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay_messages_benchmark_test.go -------------------------------------------------------------------------------- /relay_messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay_messages_test.go -------------------------------------------------------------------------------- /relay_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay_test.go -------------------------------------------------------------------------------- /relay_timer_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/relay_timer_pool.go -------------------------------------------------------------------------------- /reqres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/reqres.go -------------------------------------------------------------------------------- /reqresreaderstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/reqresreaderstate_string.go -------------------------------------------------------------------------------- /reqreswriterstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/reqreswriterstate_string.go -------------------------------------------------------------------------------- /retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/retry.go -------------------------------------------------------------------------------- /retry_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/retry_request_test.go -------------------------------------------------------------------------------- /retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/retry_test.go -------------------------------------------------------------------------------- /retryon_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/retryon_string.go -------------------------------------------------------------------------------- /root_peer_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/root_peer_list.go -------------------------------------------------------------------------------- /scripts/install-thrift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/scripts/install-thrift.sh -------------------------------------------------------------------------------- /scripts/vbumper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/scripts/vbumper/main.go -------------------------------------------------------------------------------- /sockio_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/sockio_bsd.go -------------------------------------------------------------------------------- /sockio_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/sockio_darwin.go -------------------------------------------------------------------------------- /sockio_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/sockio_linux.go -------------------------------------------------------------------------------- /sockio_non_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/sockio_non_unix.go -------------------------------------------------------------------------------- /sockio_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/sockio_unix.go -------------------------------------------------------------------------------- /stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/stats.go -------------------------------------------------------------------------------- /stats/metrickey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/stats/metrickey.go -------------------------------------------------------------------------------- /stats/metrickey_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/stats/metrickey_test.go -------------------------------------------------------------------------------- /stats/statsdreporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/stats/statsdreporter.go -------------------------------------------------------------------------------- /stats/tally.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/stats/tally.go -------------------------------------------------------------------------------- /stats/tally_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/stats/tally_test.go -------------------------------------------------------------------------------- /stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/stats_test.go -------------------------------------------------------------------------------- /stats_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/stats_utils_test.go -------------------------------------------------------------------------------- /stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/stream_test.go -------------------------------------------------------------------------------- /stress_flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/stress_flag_test.go -------------------------------------------------------------------------------- /subchannel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/subchannel.go -------------------------------------------------------------------------------- /subchannel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/subchannel_test.go -------------------------------------------------------------------------------- /systemerrcode_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/systemerrcode_string.go -------------------------------------------------------------------------------- /tchannel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/tchannel_test.go -------------------------------------------------------------------------------- /testutils/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/call.go -------------------------------------------------------------------------------- /testutils/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/channel.go -------------------------------------------------------------------------------- /testutils/channel_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/channel_opts.go -------------------------------------------------------------------------------- /testutils/channel_t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/channel_t.go -------------------------------------------------------------------------------- /testutils/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/conn.go -------------------------------------------------------------------------------- /testutils/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/counter.go -------------------------------------------------------------------------------- /testutils/counter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/counter_test.go -------------------------------------------------------------------------------- /testutils/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/data.go -------------------------------------------------------------------------------- /testutils/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/echo.go -------------------------------------------------------------------------------- /testutils/goroutines/stacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/goroutines/stacks.go -------------------------------------------------------------------------------- /testutils/goroutines/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/goroutines/verify.go -------------------------------------------------------------------------------- /testutils/goroutines/verify_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/goroutines/verify_opts.go -------------------------------------------------------------------------------- /testutils/lists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/lists.go -------------------------------------------------------------------------------- /testutils/logfilter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/logfilter_test.go -------------------------------------------------------------------------------- /testutils/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/logger.go -------------------------------------------------------------------------------- /testutils/mockhyperbahn/hyperbahn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/mockhyperbahn/hyperbahn.go -------------------------------------------------------------------------------- /testutils/mockhyperbahn/hyperbahn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/mockhyperbahn/hyperbahn_test.go -------------------------------------------------------------------------------- /testutils/mockhyperbahn/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/mockhyperbahn/utils.go -------------------------------------------------------------------------------- /testutils/now.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/now.go -------------------------------------------------------------------------------- /testutils/random_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/random_bench_test.go -------------------------------------------------------------------------------- /testutils/relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/relay.go -------------------------------------------------------------------------------- /testutils/sleep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/sleep.go -------------------------------------------------------------------------------- /testutils/test_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/test_server.go -------------------------------------------------------------------------------- /testutils/testreader/chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/testreader/chunk.go -------------------------------------------------------------------------------- /testutils/testreader/chunk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/testreader/chunk_test.go -------------------------------------------------------------------------------- /testutils/testreader/loop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/testreader/loop.go -------------------------------------------------------------------------------- /testutils/testreader/loop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/testreader/loop_test.go -------------------------------------------------------------------------------- /testutils/testtracing/propagation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/testtracing/propagation.go -------------------------------------------------------------------------------- /testutils/testtracing/propagation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/testtracing/propagation_test.go -------------------------------------------------------------------------------- /testutils/testwriter/limited.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/testwriter/limited.go -------------------------------------------------------------------------------- /testutils/testwriter/limited_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/testwriter/limited_test.go -------------------------------------------------------------------------------- /testutils/thriftarg2test/arg2_kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/thriftarg2test/arg2_kv.go -------------------------------------------------------------------------------- /testutils/thriftarg2test/arg2_kv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/thriftarg2test/arg2_kv_test.go -------------------------------------------------------------------------------- /testutils/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/ticker.go -------------------------------------------------------------------------------- /testutils/ticker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/ticker_test.go -------------------------------------------------------------------------------- /testutils/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/timeout.go -------------------------------------------------------------------------------- /testutils/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/testutils/wait.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/application_exception.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/application_exception.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/application_exception_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/application_exception_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/binary_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/binary_protocol.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/binary_protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/binary_protocol_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/buffered_transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/buffered_transport.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/buffered_transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/buffered_transport_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/compact_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/compact_protocol.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/compact_protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/compact_protocol_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/debug_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/debug_protocol.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/deserializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/deserializer.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/exception.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/exception.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/exception_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/exception_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/field.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/framed_transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/framed_transport.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/framed_transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/framed_transport_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/http_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/http_client.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/http_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/http_client_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/http_transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/http_transport.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/iostream_transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/iostream_transport.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/iostream_transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/iostream_transport_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/json_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/json_protocol.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/json_protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/json_protocol_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/lowlevel_benchmarks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/lowlevel_benchmarks_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/memory_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/memory_buffer.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/memory_buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/memory_buffer_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/messagetype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/messagetype.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/multiplexed_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/multiplexed_protocol.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/numeric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/numeric.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/pointerize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/pointerize.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/processor.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/processor_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/processor_factory.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/protocol.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/protocol_exception.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/protocol_exception.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/protocol_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/protocol_factory.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/protocol_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/rich_transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/rich_transport.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/rich_transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/rich_transport_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/serializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/serializer.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/serializer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/serializer_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/serializer_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/serializer_types_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/server.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/server_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/server_socket.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/server_socket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/server_socket_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/server_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/server_transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/server_transport.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/simple_json_protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/simple_json_protocol_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/simple_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/simple_server.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/socket.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/ssl_server_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/ssl_server_socket.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/ssl_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/ssl_socket.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/transport.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/transport_exception.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/transport_exception.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/transport_exception_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/transport_exception_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/transport_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/transport_factory.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/transport_test.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/type.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/zlib_transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/zlib_transport.go -------------------------------------------------------------------------------- /thirdparty/github.com/apache/thrift/lib/go/thrift/zlib_transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thirdparty/github.com/apache/thrift/lib/go/thrift/zlib_transport_test.go -------------------------------------------------------------------------------- /thrift/arg2/kv_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/arg2/kv_iterator.go -------------------------------------------------------------------------------- /thrift/arg2/kv_iterator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/arg2/kv_iterator_test.go -------------------------------------------------------------------------------- /thrift/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/client.go -------------------------------------------------------------------------------- /thrift/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/context.go -------------------------------------------------------------------------------- /thrift/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/context_test.go -------------------------------------------------------------------------------- /thrift/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/doc.go -------------------------------------------------------------------------------- /thrift/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/errors_test.go -------------------------------------------------------------------------------- /thrift/gen-go/meta/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/gen-go/meta/constants.go -------------------------------------------------------------------------------- /thrift/gen-go/meta/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/gen-go/meta/meta.go -------------------------------------------------------------------------------- /thrift/gen-go/meta/ttypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/gen-go/meta/ttypes.go -------------------------------------------------------------------------------- /thrift/gen-go/test/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/gen-go/test/constants.go -------------------------------------------------------------------------------- /thrift/gen-go/test/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/gen-go/test/meta.go -------------------------------------------------------------------------------- /thrift/gen-go/test/secondservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/gen-go/test/secondservice.go -------------------------------------------------------------------------------- /thrift/gen-go/test/simpleservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/gen-go/test/simpleservice.go -------------------------------------------------------------------------------- /thrift/gen-go/test/tchan-test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/gen-go/test/tchan-test.go -------------------------------------------------------------------------------- /thrift/gen-go/test/ttypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/gen-go/test/ttypes.go -------------------------------------------------------------------------------- /thrift/headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/headers.go -------------------------------------------------------------------------------- /thrift/headers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/headers_test.go -------------------------------------------------------------------------------- /thrift/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/interfaces.go -------------------------------------------------------------------------------- /thrift/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/meta.go -------------------------------------------------------------------------------- /thrift/meta.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/meta.thrift -------------------------------------------------------------------------------- /thrift/meta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/meta_test.go -------------------------------------------------------------------------------- /thrift/mocks/TChanMeta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/mocks/TChanMeta.go -------------------------------------------------------------------------------- /thrift/mocks/TChanSecondService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/mocks/TChanSecondService.go -------------------------------------------------------------------------------- /thrift/mocks/TChanSimpleService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/mocks/TChanSimpleService.go -------------------------------------------------------------------------------- /thrift/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/options.go -------------------------------------------------------------------------------- /thrift/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/server.go -------------------------------------------------------------------------------- /thrift/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/server_test.go -------------------------------------------------------------------------------- /thrift/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/struct.go -------------------------------------------------------------------------------- /thrift/struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/struct_test.go -------------------------------------------------------------------------------- /thrift/tchan-meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/tchan-meta.go -------------------------------------------------------------------------------- /thrift/test.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/test.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/compile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/compile_test.go -------------------------------------------------------------------------------- /thrift/thrift-gen/extends.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/extends.go -------------------------------------------------------------------------------- /thrift/thrift-gen/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/generate.go -------------------------------------------------------------------------------- /thrift/thrift-gen/gopath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/gopath.go -------------------------------------------------------------------------------- /thrift/thrift-gen/gopath_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/gopath_test.go -------------------------------------------------------------------------------- /thrift/thrift-gen/include.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/include.go -------------------------------------------------------------------------------- /thrift/thrift-gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/main.go -------------------------------------------------------------------------------- /thrift/thrift-gen/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/names.go -------------------------------------------------------------------------------- /thrift/thrift-gen/tchannel-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/tchannel-template.go -------------------------------------------------------------------------------- /thrift/thrift-gen/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/template.go -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/binary.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/binary.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/byte.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/byte.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/gokeywords.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/gokeywords.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/include_test/namespace/a/shared.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/include_test/namespace/a/shared.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/include_test/namespace/b/shared.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/include_test/namespace/b/shared.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/include_test/namespace/namespace.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/include_test/namespace/namespace.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/include_test/simple/shared.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/include_test/simple/shared.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/include_test/simple/shared2.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/include_test/simple/shared2.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/include_test/simple/simple.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/include_test/simple/simple.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/include_test/svc_extend/shared.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/include_test/svc_extend/shared.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/include_test/svc_extend/svc_extend.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/include_test/svc_extend/svc_extend.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/multi_test/file1.thrift: -------------------------------------------------------------------------------- 1 | include "file2.thrift" 2 | 3 | service Foo1 { 4 | void M() 5 | } 6 | -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/multi_test/file2.thrift: -------------------------------------------------------------------------------- 1 | 2 | service Foo2 { 3 | void M() 4 | } 5 | -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/service_extend.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/service_extend.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/sets.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/sets.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/test1.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/test1.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/typedefs.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/typedefs.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/test_files/union.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/test_files/union.thrift -------------------------------------------------------------------------------- /thrift/thrift-gen/typestate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/typestate.go -------------------------------------------------------------------------------- /thrift/thrift-gen/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/validate.go -------------------------------------------------------------------------------- /thrift/thrift-gen/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift-gen/wrap.go -------------------------------------------------------------------------------- /thrift/thrift_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift_bench_test.go -------------------------------------------------------------------------------- /thrift/thrift_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/thrift_test.go -------------------------------------------------------------------------------- /thrift/tracing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/tracing_test.go -------------------------------------------------------------------------------- /thrift/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/transport.go -------------------------------------------------------------------------------- /thrift/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/thrift/transport_test.go -------------------------------------------------------------------------------- /tnet/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/tnet/listener.go -------------------------------------------------------------------------------- /tnet/listener_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/tnet/listener_test.go -------------------------------------------------------------------------------- /tos/tos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/tos/tos.go -------------------------------------------------------------------------------- /tos/tos_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/tos/tos_string.go -------------------------------------------------------------------------------- /tos/tos_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/tos/tos_test.go -------------------------------------------------------------------------------- /trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/trace/doc.go -------------------------------------------------------------------------------- /tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/tracing.go -------------------------------------------------------------------------------- /tracing_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/tracing_internal_test.go -------------------------------------------------------------------------------- /tracing_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/tracing_keys.go -------------------------------------------------------------------------------- /tracing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/tracing_test.go -------------------------------------------------------------------------------- /trand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/trand/rand.go -------------------------------------------------------------------------------- /typed/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/typed/buffer.go -------------------------------------------------------------------------------- /typed/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/typed/buffer_test.go -------------------------------------------------------------------------------- /typed/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/typed/reader.go -------------------------------------------------------------------------------- /typed/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/typed/reader_test.go -------------------------------------------------------------------------------- /typed/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/typed/writer.go -------------------------------------------------------------------------------- /typed/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/typed/writer_test.go -------------------------------------------------------------------------------- /utils_for_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/utils_for_test.go -------------------------------------------------------------------------------- /verify_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/verify_utils_test.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/tchannel-go/HEAD/version.go --------------------------------------------------------------------------------