You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each line of the request ends up getting sent in its own TCP packet instead of sending
them all in one TCP packet.
What steps will reproduce the problem?
package main
import (
"http"
)
func main() {
_, err := http.DefaultClient.Get("http://www.google.com/";)
if err != nil {
panic(err.String())
}
}
Observe output with
% tcpdump -A -s 0 dst port 80