Home
last modified time | relevance | path

Searched refs:tls_overhead (Results 1 – 8 of 8) sorted by relevance

/dports/net/libcoap/libcoap-4.3.0/src/
H A Dcoap_session.c141 session->tls_overhead = 29; in coap_make_session()
142 if (session->tls_overhead >= session->mtu) { in coap_make_session()
143 session->tls_overhead = session->mtu; in coap_make_session()
245 size_t max_with_header = (size_t)(session->mtu - session->tls_overhead); in coap_session_max_pdu_size()
271 if (session->tls_overhead >= session->mtu) { in coap_session_set_mtu()
272 session->tls_overhead = session->mtu; in coap_session_set_mtu()
411 session->tls_overhead = coap_dtls_get_overhead(session); in coap_session_connected()
412 if (session->tls_overhead >= session->mtu) { in coap_session_connected()
413 session->tls_overhead = session->mtu; in coap_session_connected()
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/libnghttp2-sys-0.1.7+1.45.0/nghttp2/src/
H A Dshrpx_connection.cc957 size_t tls_overhead; in get_tcp_hint() local
960 tls_overhead = 22; in get_tcp_hint()
964 tls_overhead = 29; in get_tcp_hint()
968 (avail_packets + 2) * (tcp_info.tcpi_snd_mss - tls_overhead); in get_tcp_hint()
/dports/net/proby/proby-1.0.2/cargo-crates/libnghttp2-sys-0.1.4+1.41.0/nghttp2/src/
H A Dshrpx_connection.cc954 size_t tls_overhead; in get_tcp_hint() local
957 tls_overhead = 22; in get_tcp_hint()
961 tls_overhead = 29; in get_tcp_hint()
965 (avail_packets + 2) * (tcp_info.tcpi_snd_mss - tls_overhead); in get_tcp_hint()
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/libnghttp2-sys-0.1.6+1.43.0/nghttp2/src/
H A Dshrpx_connection.cc954 size_t tls_overhead; in get_tcp_hint() local
957 tls_overhead = 22; in get_tcp_hint()
961 tls_overhead = 29; in get_tcp_hint()
965 (avail_packets + 2) * (tcp_info.tcpi_snd_mss - tls_overhead); in get_tcp_hint()
/dports/lang/rust/rustc-1.58.1-src/vendor/libnghttp2-sys/nghttp2/src/
H A Dshrpx_connection.cc954 size_t tls_overhead; in get_tcp_hint() local
957 tls_overhead = 22; in get_tcp_hint()
961 tls_overhead = 29; in get_tcp_hint()
965 (avail_packets + 2) * (tcp_info.tcpi_snd_mss - tls_overhead); in get_tcp_hint()
/dports/www/libnghttp2/nghttp2-1.46.0/src/
H A Dshrpx_connection.cc1029 size_t tls_overhead; in get_tcp_hint() local
1032 tls_overhead = 22; in get_tcp_hint()
1036 tls_overhead = 29; in get_tcp_hint()
1040 (avail_packets + 2) * (tcp_info.tcpi_snd_mss - tls_overhead); in get_tcp_hint()
/dports/www/nghttp2/nghttp2-1.46.0/src/
H A Dshrpx_connection.cc1029 size_t tls_overhead; in get_tcp_hint() local
1032 tls_overhead = 22; in get_tcp_hint()
1036 tls_overhead = 29; in get_tcp_hint()
1040 (avail_packets + 2) * (tcp_info.tcpi_snd_mss - tls_overhead); in get_tcp_hint()
/dports/net/libcoap/libcoap-4.3.0/include/coap3/
H A Dcoap_session_internal.h54 size_t tls_overhead; /**< overhead of TLS layer */ member