const google.golang.org/grpc/internal/transport.defaultWindowSize

12 uses

	google.golang.org/grpc/internal/transport (current package)
		controlbuf.go#L471: 		sendQuota:     defaultWindowSize,
		controlbuf.go#L472: 		oiws:          defaultWindowSize,
		defaults.go#L28: 	defaultWindowSize = 65535
		defaults.go#L30: 	initialWindowSize             = defaultWindowSize // for an RPC
		http2_client.go#L236: 	if opts.InitialConnWindowSize >= defaultWindowSize {
		http2_client.go#L280: 	if opts.InitialWindowSize >= defaultWindowSize {
		http2_client.go#L324: 	if t.initialWindowSize != defaultWindowSize {
		http2_client.go#L342: 	if delta := uint32(icwz - defaultWindowSize); delta > 0 {
		http2_server.go#L155: 	if config.InitialWindowSize >= defaultWindowSize {
		http2_server.go#L160: 	if config.InitialConnWindowSize >= defaultWindowSize {
		http2_server.go#L164: 	if iwz != defaultWindowSize {
		http2_server.go#L185: 	if delta := uint32(icwz - defaultWindowSize); delta > 0 {