You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@trafficserver.apache.org by GitBox <gi...@apache.org> on 2020/07/06 01:28:41 UTC

[GitHub] [trafficserver] maskit commented on pull request #6972: Traffic Dump: dump server-side protocol stack

maskit commented on pull request #6972:
URL: https://github.com/apache/trafficserver/pull/6972#issuecomment-653971064


   You say protocol stack but you don't care the order?
   What's the key for protocol? ALPN id? Protocol name? Protocol name with version?
   I'd define the format like this:
   
   ```json
   "protocol": [
     {
       "name": "ip",
       "version" : "4"
     },
     {
       "name": "tcp"
     },
     {
       "name": "tls",
       "version" : "1.2",
       "alpn": "h2",
       "sni": "example.com"
     },
     {
       "name": "http",
       "version": "2"
     },
   ]
   ```
   Also, I'd be curious what the format for QUIC would be like. It could be "udp", "quic" and "tls", but technically "tls" is not on top of "quic".
   


----------------------------------------------------------------
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:
users@infra.apache.org