-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpresets.go
161 lines (149 loc) · 3.29 KB
/
presets.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package azuretls
import (
"github.com/Noooste/fhttp/http2"
"math"
)
const (
Chrome = "chrome"
Firefox = "firefox"
Opera = "opera"
Safari = "safari"
Edge = "edge"
Ios = "ios"
Android = "android" //deprecated
)
func defaultHeaderSettings(navigator string) (map[http2.SettingID]uint32, []http2.SettingID) {
switch navigator {
case Firefox:
return map[http2.SettingID]uint32{
http2.SettingMaxFrameSize: 16384,
http2.SettingInitialWindowSize: 131072,
http2.SettingHeaderTableSize: 65536,
}, []http2.SettingID{
http2.SettingMaxFrameSize,
http2.SettingInitialWindowSize,
http2.SettingHeaderTableSize,
}
case Ios:
return map[http2.SettingID]uint32{
http2.SettingHeaderTableSize: 4096,
http2.SettingMaxConcurrentStreams: 100,
http2.SettingInitialWindowSize: 2097152,
http2.SettingMaxFrameSize: 16384,
http2.SettingMaxHeaderListSize: math.MaxUint32,
}, []http2.SettingID{
http2.SettingHeaderTableSize,
http2.SettingMaxConcurrentStreams,
http2.SettingInitialWindowSize,
http2.SettingMaxFrameSize,
http2.SettingMaxHeaderListSize,
}
case Safari:
return map[http2.SettingID]uint32{
http2.SettingEnablePush: 0,
http2.SettingMaxConcurrentStreams: 100,
http2.SettingInitialWindowSize: 2097152,
0x8: 1,
0x9: 1,
}, []http2.SettingID{
http2.SettingEnablePush,
http2.SettingMaxConcurrentStreams,
http2.SettingInitialWindowSize,
0x8,
0x9,
}
default: //chrome
return map[http2.SettingID]uint32{
http2.SettingHeaderTableSize: 65536,
http2.SettingEnablePush: 0,
http2.SettingInitialWindowSize: 6291456,
http2.SettingMaxHeaderListSize: 262144,
}, []http2.SettingID{
http2.SettingHeaderTableSize,
http2.SettingEnablePush,
http2.SettingInitialWindowSize,
http2.SettingMaxHeaderListSize,
}
}
}
func defaultWindowsUpdate(navigator string) uint32 {
switch navigator {
case Firefox:
return 12517377
case Ios:
return 15663105
case Safari:
return 10420225
default:
return 15663105
}
}
func defaultStreamPriorities(navigator string) []http2.Priority {
switch navigator {
case Firefox:
return []http2.Priority{
{
StreamID: 3,
PriorityParam: http2.PriorityParam{
Weight: 200,
},
},
{
StreamID: 5,
PriorityParam: http2.PriorityParam{
Weight: 100,
},
},
{
StreamID: 7,
PriorityParam: http2.PriorityParam{
Weight: 0,
},
},
{
StreamID: 9,
PriorityParam: http2.PriorityParam{
Weight: 0,
StreamDep: 7,
},
},
{
StreamID: 11,
PriorityParam: http2.PriorityParam{
Weight: 0,
StreamDep: 3,
},
},
{
StreamID: 13,
PriorityParam: http2.PriorityParam{
Weight: 240,
},
},
}
default:
return []http2.Priority{}
}
}
func defaultHeaderPriorities(navigator string) *http2.PriorityParam {
switch navigator {
case Firefox:
return &http2.PriorityParam{
Weight: 41,
StreamDep: 13,
Exclusive: false,
}
case Ios:
return &http2.PriorityParam{
Weight: 254,
StreamDep: 0,
Exclusive: false,
}
default: // chrome
return &http2.PriorityParam{
Weight: 255,
StreamDep: 0,
Exclusive: true,
}
}
}