You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0412]: cannot find type `Server` in module `default`
--> /root/.cargo/git/checkouts/s2n-quic-f7936126449d7979/a9aa1c2/quic/s2n-quic/src/provider/tls.rs:46:28
|
46 | type Server = default::Server;
| ^^^^^^ not found in `default`
|
help: consider importing this struct through its public re-export
|
6 + use crate::Server;
|
help: if you import `Server`, refer to it directly
|
46 - type Server = default::Server;
46 + type Server = Server;
|
error[E0412]: cannot find type `Client` in module `default`
Problem:
We create own TLS provider, so we don't want bundle additional TLS stack s2n_quic has.
s2n_quic enter fallback code, cause compile error.
s2n-quic/quic/s2n-quic/src/provider/tls.rs
Line 35 in b1fcbb7
Solution:
Can we wrap in feature control block?
Requirements / Acceptance Criteria:
Out of scope:
The text was updated successfully, but these errors were encountered: