When looking at client->server interaction for fetching images, I see the following HTTP GET request from client where the packet contains 2 HTTP GET requests and I am not sure how the server would respond to such requests?
- Will the server ignore the second GET request?
- Will the server send the response one by one to each GET request?
This doesn't seem to be HTTP pipelining. Please advise if it is.
Transmission Control Protocol, Src Port: 59649 (59649), Dst Port: 8080 (8080), Seq: 1, Ack: 1, Len: 648 Source Port: 59649 Destination Port: 8080 [Stream index: 86] [TCP Segment Len: 648] Sequence number: 1 (relative sequence number) [Next sequence number: 649 (relative sequence number)] Acknowledgment number: 1 (relative ack number) Header Length: 32 bytes Flags: 0x018 (PSH, ACK) 000. .... .... = Reserved: Not set ...0 .... .... = Nonce: Not set .... 0... .... = Congestion Window Reduced (CWR): Not set .... .0.. .... = ECN-Echo: Not set .... ..0. .... = Urgent: Not set .... ...1 .... = Acknowledgment: Set .... .... 1... = Push: Set .... .... .0.. = Reset: Not set .... .... ..0. = Syn: Not set .... .... ...0 = Fin: Not set [TCP Flags: *******AP***] Window size value: 683 [Calculated window size: 43712] [Window size scaling factor: 64] Checksum: [validation disabled] [Good Checksum: False] [Bad Checksum: False] Urgent pointer: 0 Options: (12 bytes), No-Operation (NOP), No-Operation (NOP), Timestamps No-Operation (NOP) Type: 1 0... .... = Copy on fragmentation: No .00. .... = Class: Control (0) ...0 0001 = Number: No-Operation (NOP) (1) No-Operation (NOP) Type: 1 0... .... = Copy on fragmentation: No .00. .... = Class: Control (0) ...0 0001 = Number: No-Operation (NOP) (1) Timestamps: TSval 6345, TSecr 6344 Kind: Time Stamp Option (8) Length: 10 Timestamp value: 6345 Timestamp echo reply: 6344 [SEQ/ACK analysis] [iRTT: 0.000099000 seconds] [Bytes in flight: 648] Hypertext Transfer Protocol GET HTTP/1.1\r\n [Expert Info (Chat/Sequence): GET HTTP/1.1\r\n] [GET HTTP/1.1\r\n] [Severity level: Chat] [Group: Sequence]enter code here Request Method: GET Request URI: Request Version: HTTP/1.1 Host: \r\n sent: \r\n User-Agent: \r\n Accept-Encoding: gzip, deflate\r\n Accept-Language: en-GB,*\r\n Connection: keep-alive\r\n \r\n [Full request URI: ] [HTTP request 2/2] [Prev request in frame: 1254] [Response in frame: 1272] Hypertext Transfer Protocol GET \r\n [Expert Info (Chat/Sequence): GET HTTP/1.1\r\n] [GET HTTP/1.1\r\n] [Severity level: Chat] [Group: Sequence] Request Method: GET Request URI: Request Version: HTTP/1.1 Host: \r\n sent: \r\n User-Agent: \r\n Accept-Encoding: gzip, deflate\r\n Accept-Language: en-GB,*\r\n Connection: keep-alive\r\n \r\n [Full request URI: ] [HTTP request 2/2] [Prev request in frame: 1254] [Response in frame: 1272]
Are there any online tool that I can use to test such requests?