Denis Garus
Denis Garus
Actual PR https://github.com/libp2p/rust-libp2p/pull/5564
Hi! > Every time you hand data off to a framework, you kind of need to understand how it works to build your app: "If I put data in here,...
> We might be able to mitigate that by adding helper components that users can compose into their ConnectionHandler. Yes, this is a necessary thing.
@mxinden Hello, Max! I'd like to help you with this issue, I hope you don't mind.
@thomaseizinger Could you please assign this issue to me? The `Assignees` feature looks very convenient to understand, there is anybody working on the issue or not :) Why do you...
> > @thomaseizinger Could you please assign this issue to me? > > The `Assignees` feature looks very convenient to understand, there is anybody working on the issue or not...
@thomaseizinger @mxinden Hello guys! Thoughts about the WebTransport integration. Is it a good idea to wrap `libp2p::quic::GenTransport` in `libp2p::webtransport::Transpot`? In that case, `libp2p::webtransport::Transpot` will depend on `libp2p::quic`. Pros: we won't...
> Could we just _add_ WebTransport functionality to `libp2p-quic`? I.e. when the user says `Swarm::listen_on(..../webtransport)`, the `libp2p-quic` module can pick that up and make it happen. > > It would...
@thomaseizinger @mxinden Hi! Here is an attempt to add `WebTransport` to the `quic` transport. I am faced with a few problems here. 1. h3-webtransport doesn't have a client part. Or...
I started the server and executed the following request ``` HttpClient http = HttpClient.newBuilder() .version(HttpClient.Version.HTTP_1_1) .build(); URI uri = new URIBuilder() .setScheme("http").setHost("localhost").setPort(8080).setPath("v2/_catalog") .build(); HttpRequest request = HttpRequest.newBuilder() .GET().uri(uri).header("Authorization", "Basic YWxpY2U6MTIz")...