| 949 | -------------------------------------------------------------------------*/ |
| 950 | |
| 951 | inline const char * |
| 952 | HTTPHdr::method_get(int *length) |
| 953 | { |
| 954 | ink_assert(valid()); |
| 955 | ink_assert(m_http->m_polarity == HTTP_TYPE_REQUEST); |
| 956 | |
| 957 | return http_hdr_method_get(m_http, length); |
| 958 | } |
| 959 | |
| 960 | inline int |
| 961 | HTTPHdr::method_get_wksidx() const |
no test coverage detected