| 1235 | } |
| 1236 | |
| 1237 | unsigned |
| 1238 | Http2ConnectionSettings::get(Http2SettingsIdentifier id) const |
| 1239 | { |
| 1240 | if (0 < id && id < HTTP2_SETTINGS_MAX) { |
| 1241 | return this->settings[indexof(id)]; |
| 1242 | } else { |
| 1243 | ink_assert(!"Bad Settings Identifier"); |
| 1244 | } |
| 1245 | |
| 1246 | return 0; |
| 1247 | } |
| 1248 | |
| 1249 | unsigned |
| 1250 | Http2ConnectionSettings::set(Http2SettingsIdentifier id, unsigned value) |
no outgoing calls
no test coverage detected