0

Is there a way to enable QUIC protocol in Node.js gRPC library? On client side (Android app), I can swap out the transport channel for Cronet's implementation which supports QUIC, but I can't figure out how to enable the protocol on server's side. The Server class does not seem to provide any means for swapping the channel, only passing channel options which have no reference of QUIC protocol in them

koperko
  • 2,209
  • 10
  • 17

1 Answers1

1

No, the Node gRPC library does not support the QUIC protocol.

murgatroid99
  • 15,284
  • 8
  • 52
  • 88