dart-lang / sdk

The Dart SDK, including the VM, dart2js, core libraries, and more.
https://dart.dev
BSD 3-Clause "New" or "Revised" License
9.95k stars 1.53k forks source link

Is there some native package for support quic protocol without http3 #50562

Closed someview closed 1 year ago

someview commented 1 year ago

I've searched may places to find the package for support quic protocol without http3,but there is none. eg:cronet dose not have quic conn but just http3client. If we must use dart:ffi ,that's too bad. Why netstack is not part of the language?

mraleph commented 1 year ago

I don't think there is a ready made package for this. At least I could not quickly find one on pub.dev.

If we must use dart:ffi ,that's too bad

Yep, dart:ffi is the way to do this.

Why netstack is not part of the language?

Because that does not scale for us as the team - we have limited resources that can't keep up with all requests.

vukitoso commented 1 month ago

quic protocol without http3

What decision did you come to in the end? How did you implement QUIC in dart?