Home
last modified time | relevance | path

Searched refs:transport_opts (Results 1 – 25 of 54) sorted by relevance

123

/dports/net/py-kombu/kombu-4.6.11/kombu/
H A Dconnection.py837 transport_opts = self.transport_options
838 if transport_opts:
839 if 'max_retries' in transport_opts:
840 conn_opts['max_retries'] = transport_opts['max_retries']
841 if 'interval_start' in transport_opts:
842 conn_opts['interval_start'] = transport_opts['interval_start']
843 if 'interval_step' in transport_opts:
844 conn_opts['interval_step'] = transport_opts['interval_step']
845 if 'interval_max' in transport_opts:
846 conn_opts['interval_max'] = transport_opts['interval_max']
/dports/devel/elixir-smppex/smppex-2.2.9/test/
H A Dmc_test.exs10 assert {:ok, _} = MC.start({Support.Session, {pid, handler}}, transport_opts: [port: 0])
18 MC.start({Support.Session, {pid, handler}}, transport_opts: [port: 0])
/dports/devel/elixir-smppex/smppex-2.2.9/lib/smppex/
H A Dmc.ex25 transport_opts: [port: 2775])
52 …* `:transport_opts` is a list of Ranch transport options. The major option is `{:port, port}`. The…
80 transport_opts = Keyword.get(opts, :transport_opts, [{:port, 0}])
89 transport_opts,
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/ranch/src/
H A Dranch.erl56 -type opts() :: any() | transport_opts(any()).
68 -type transport_opts(SocketOpts) :: #{ type
81 -export_type([transport_opts/1]).
104 -spec normalize_opts(opts()) -> transport_opts(any()).
110 -spec validate_transport_opts(transport_opts(any())) -> ok | {error, any()}.
124 -spec validate_transport_opt(any(), any(), transport_opts(any())) -> boolean().
394 -spec get_transport_options(ref()) -> transport_opts(any()).
H A Dranch_transport.erl31 -callback listen(ranch:transport_opts(any())) -> {ok, socket()} | {error, atom()}.
70 -callback cleanup(ranch:transport_opts(any())) -> ok.
H A Dranch_tcp.erl89 -spec listen(ranch:transport_opts(opts())) -> {ok, inet:socket()} | {error, atom()}.
277 -spec cleanup(ranch:transport_opts(opts())) -> ok.
H A Dranch_ssl.erl114 -spec listen(ranch:transport_opts(opts())) -> {ok, ssl:sslsocket()} | {error, atom()}.
308 -spec cleanup(ranch:transport_opts(opts())) -> ok.
/dports/devel/py-taskflow/taskflow-4.6.3/taskflow/tests/unit/worker_based/
H A Dtest_proxy.py144 transport_opts = {'context': 'context'}
145 self.proxy(transport='memory', transport_options=transport_opts)
149 transport_options=transport_opts),
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/modules/net_tools/
H A Dsnmp_facts.py300 transport_opts = dict((k, m_args[k]) for k in ('timeout', 'retries') if m_args[k] is not None)
349 cmdgen.UdpTransportTarget((m_args['host'], 161), **transport_opts),
380 cmdgen.UdpTransportTarget((m_args['host'], 161), **transport_opts),
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/modules/
H A Dsnmp_facts.py300 transport_opts = dict((k, m_args[k]) for k in ('timeout', 'retries') if m_args[k] is not None)
349 cmdgen.UdpTransportTarget((m_args['host'], 161), **transport_opts),
380 cmdgen.UdpTransportTarget((m_args['host'], 161), **transport_opts),
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/inets/test/
H A Dhttpd_SUITE.erl458 transport_opts(Type, Config),
469 transport_opts(Type, Config),
480 transport_opts(Type, Config),
502 transport_opts(Type, Config),
513 transport_opts(Type, Config),
524 transport_opts(Type, Config),
2339 transport_opts(Type, Config),
2350 transport_opts(Type, Config),
2361 transport_opts(Type, Config),
2413 transport_opts(ssl, Config) -> function
[all …]
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/inets/test/
H A Dhttpd_SUITE.erl444 transport_opts(Type, Config),
455 transport_opts(Type, Config),
466 transport_opts(Type, Config),
488 transport_opts(Type, Config),
499 transport_opts(Type, Config),
510 transport_opts(Type, Config),
2325 transport_opts(Type, Config),
2336 transport_opts(Type, Config),
2347 transport_opts(Type, Config),
2399 transport_opts(ssl, Config) -> function
[all …]
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/inets/test/
H A Dhttpd_SUITE.erl444 transport_opts(Type, Config),
455 transport_opts(Type, Config),
466 transport_opts(Type, Config),
488 transport_opts(Type, Config),
499 transport_opts(Type, Config),
510 transport_opts(Type, Config),
2325 transport_opts(Type, Config),
2336 transport_opts(Type, Config),
2347 transport_opts(Type, Config),
2399 transport_opts(ssl, Config) -> function
[all …]
/dports/lang/erlang/otp-OTP-24.1.7/lib/inets/test/
H A Dhttpd_SUITE.erl444 transport_opts(Type, Config),
455 transport_opts(Type, Config),
466 transport_opts(Type, Config),
488 transport_opts(Type, Config),
499 transport_opts(Type, Config),
510 transport_opts(Type, Config),
2325 transport_opts(Type, Config),
2336 transport_opts(Type, Config),
2347 transport_opts(Type, Config),
2399 transport_opts(ssl, Config) -> function
[all …]
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/inets/test/
H A Dhttpd_SUITE.erl444 transport_opts(Type, Config),
455 transport_opts(Type, Config),
466 transport_opts(Type, Config),
488 transport_opts(Type, Config),
499 transport_opts(Type, Config),
510 transport_opts(Type, Config),
2325 transport_opts(Type, Config),
2336 transport_opts(Type, Config),
2347 transport_opts(Type, Config),
2399 transport_opts(ssl, Config) -> function
[all …]
/dports/devel/elixir-smppex/smppex-2.2.9/test/support/ssl/
H A Dmc.ex14 transport_opts: [
H A Desme.ex17 transport_opts: [
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/inets/test/
H A Dhttpd_SUITE.erl469 transport_opts(Type, Config),
480 transport_opts(Type, Config),
491 transport_opts(Type, Config),
1306 transport_opts(Type, Config),
1324 transport_opts(Type, Config),
1999 transport_opts(Type, Config),
2440 transport_opts(Type, Config),
2451 transport_opts(Type, Config),
2462 transport_opts(Type, Config),
2514 transport_opts(ssl, Config) -> function
[all …]
/dports/net/erlang-ranch/ranch-1.3.2/test/
H A Dsendfile_SUITE.erl55 [{transport, ranch_ssl}, {transport_opts, SslOpts} | Config];
57 [{transport, ranch_tcp}, {transport_opts, []} | Config].
265 TransportOpts = config(transport_opts, Config),
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/inets/test/
H A Dhttpd_SUITE.erl469 transport_opts(Type, Config),
480 transport_opts(Type, Config),
1314 transport_opts(Type, Config),
1332 transport_opts(Type, Config),
1988 transport_opts(Type, Config),
2001 transport_opts(Type, Config),
2428 transport_opts(Type, Config),
2439 transport_opts(Type, Config),
2450 transport_opts(Type, Config),
2502 transport_opts(ssl, Config) -> function
[all …]
/dports/net/tclsoap/tclsoap1.6.7/
H A DSOAP.tcl274 set transport_opts "[schemeloc $scheme]::method:options"
275 if {[info exists $transport_opts]} {
277 set options [concat $options [set $transport_opts]]
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/gun/src/
H A Dgun.erl109 transport_opts => [gen_tcp:connect_option()] | [ssl:connect_option()],
260 check_options([{transport_opts, L}|Opts]) when is_list(L) ->
675 maps:get(transport_opts, Opts, []))],
688 |maps:get(transport_opts, Opts, [])],
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/megaco/test/
H A Dmegaco_test_mg.erl100 {RI3, Conf1} = transport_opts(Conf),
183 transport_opts(Config) -> function
184 case lists:keysearch(transport_opts, 1, Config) of
186 Config1 = lists:keydelete(transport_opts, 1, Config),
1470 get_conf(transport_opts, RI, []).
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/megaco/test/
H A Dmegaco_test_mg.erl103 {RI3, Conf1} = transport_opts(Conf),
184 transport_opts(Config) -> function
185 case lists:keysearch(transport_opts, 1, Config) of
187 Config1 = lists:keydelete(transport_opts, 1, Config),
1490 get_conf(transport_opts, RI, []).
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/megaco/test/
H A Dmegaco_test_mg.erl103 {RI3, Conf1} = transport_opts(Conf),
184 transport_opts(Config) -> function
185 case lists:keysearch(transport_opts, 1, Config) of
187 Config1 = lists:keydelete(transport_opts, 1, Config),
1490 get_conf(transport_opts, RI, []).

123