Update
I am learning Go source code https://code.google.com/p/go/source/browse/src/pkg/net/http/server.go#1087
It seems that this function has the answer that there is no Pool.
May be someone knows how to override that function? Do I have to create a hole copy of package?
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
It sounds like you want to implement your own http.RoundTripper. I don't think you can get everything you want with what you're given in http.Transport.
It sounds like you want to implement your own http.RoundTripper. I don't think you can get everything you want with what you're given in http.Transport.I have not noticed that http.Server uses http.RoundTripper. Does it ?
--
Oh, right, server. You'll want to make your own net.Listener that you give to Server.Serve, probably.
--
import "code.google.com/p/go.net/netutil"LimitListener?