How to configure frame size in net/http for HTTP2

Hi,

I am trying to set the frame size to 16 MB in HTTP/2 Server using net/http library. Default size is 16 KB.

Tried following:

http2Server = http2.Server{
MaxReadFrameSize: 2 << 24 -1,
}
_ = http2.ConfigureServer(srv, &http2Server)

But still getting the frame size as 16 KB on client side (verified by printing length of response body). Is there any other way to set the Max Frame Size on Client and Server side ?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.