| 85 | }; |
| 86 | |
| 87 | Feature |
| 88 | Ex_ua_req_method::extract(Context &ctx, Spec const &) |
| 89 | { |
| 90 | if (auto hdr{ctx.ua_req_hdr()}; hdr.is_valid()) { |
| 91 | return FeatureView::Direct(hdr.method()); |
| 92 | } |
| 93 | return NIL_FEATURE; |
| 94 | } |
| 95 | |
| 96 | class Ex_proxy_req_method : public StringExtractor |
| 97 | { |
no test coverage detected