| 236 | } |
| 237 | |
| 238 | inline bool |
| 239 | Http2CommonSession::is_url_pushed(const char *url, int url_len) |
| 240 | { |
| 241 | if (_h2_pushed_urls == nullptr) { |
| 242 | return false; |
| 243 | } |
| 244 | |
| 245 | return _h2_pushed_urls->find(std::string{url, static_cast<size_t>(url_len)}) != _h2_pushed_urls->end(); |
| 246 | } |
| 247 | |
| 248 | inline int64_t |
| 249 | Http2CommonSession::get_connection_id() |
no test coverage detected