| 555 | } |
| 556 | |
| 557 | ts::URL |
| 558 | ts::HttpTxn::pristine_url_get() const |
| 559 | { |
| 560 | TSMBuffer buff; |
| 561 | TSMLoc loc; |
| 562 | if (_txn != nullptr && TS_SUCCESS == TSHttpTxnPristineUrlGet(_txn, &buff, &loc)) { |
| 563 | return {buff, loc}; |
| 564 | } |
| 565 | return {}; |
| 566 | } |
| 567 | |
| 568 | ts::HttpRequest |
| 569 | ts::HttpTxn::ua_req_hdr() |
no test coverage detected