Github user jrushford commented on the issue:
https://github.com/apache/trafficserver/pull/834
@zwoop @pbchou - This looks okay to me but, what do you think of modifying
the parent selection API to pass the Http transaction state then there would be
no need for the mime header. Currently the parent selection functions look
like this:
```
s->parent_params->findParent(&s->request_data, &s->parent_result);
s->parent_params->nextParent(&s->request_data, &s->parent_result);
s->parent_params->apiParentExists(&s->request_data)
s->parent_params->parentExists(&s->request_data)
new API calls:
s->parent_params->findParent(s);
s->parent_params->nextParent(s);
s->parent_params->apiParentExists(s)
s->parent_params->parentExists(s)
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---