Mapping HTTP requests to HTTP responses

后端 未结 4 1715
野性不改
野性不改 2021-02-04 18:22

If I make multiple HTTP Get Requests to the same server and get HTTP 200 OK responses to each one how do I tell which request maps to which response using Wireshark?

Cur

4条回答
  •  情书的邮戳
    2021-02-04 18:45

    Seems like this ability is not provided by the HTTP protocol at the application layer so I must go down to the transportation layer to determine this. In my case the TCP/IP layer using sequence numbers.

    HTTP only presumes a reliable
    transport; any protocol that provides such guarantees can be used; the mapping of the HTTP/1.1 request and response structures onto the
    transport data units of the protocol in question is outside the scope of this specification.

    Read more: http://www.faqs.org/rfcs/rfc2616.html#ixzz0e20kxKcz

提交回复
热议问题