bneradt commented on pull request #6972:
URL: https://github.com/apache/trafficserver/pull/6972#issuecomment-654397966
> > You say protocol stack but you don't care the order?
>
> Oh, good point. The JSON pretty printer I used changed the order around.
I'll fix that.
>
> That said, the way I wrote the plugin, the "tls" node is handled
separately and is always placed at the end. I'll see whether I can fix that.
With the latest commit, the stack now looks like the following (note that
the protocols are in order, from higher to lower layers):
```
"sessions": [
{
"protocol": {
"h2": {},
"tls": {
"version": "TLSv1.2",
"sni": "www.tls.com",
"proxy-verify-mode": 0,
"proxy-provided-cert": true
},
"tcp": {},
"ipv4": {}
},
```
And the server side:
```
"proxy-request": {
"protocol": {
"http/1.1": {},
"tls": {
"version": "TLSv1.2",
"sni": "www.tls.com",
"proxy-verify-mode": 1,
"proxy-provided-cert": false
},
"tcp": {},
"ipv4": {}
},
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]